Jump to content
Software FX Community

Client side value change


User (Legacy)

Recommended Posts

Hi,

Is it possible to use client side scripting to change a points value?

Specifically, I wish to hide and show points depending on what a user

selects, but I don't want to post back each time. I have read the Client

Side Events.doc, and have been able to fire an event client side, but if I

try to use

chart.value(x, y) = z

it just gives me a scripting error.

Regards,

Jeff.

Link to comment
Share on other sites

I probably should write a KB article about this.

The problem here is the Syntax, JavaScript is NOT .NET so it access Chart FX

using COM.

The correct syntax for this would be:

Chart1.Value.Item(x,y) = z

In general all indexers (like [x,y]) have to be retrieved through the

Item method.

--

Francisco Padron

www.chartfx.com

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...