Articles in this section
Category / Section

Is there an easy way to change the existing value(s) of the ChartPoints in ChartWebControl?

1 min read

 

You can access any of the points through the Series and Points collections:

The following Code simply demonstrate this.

C#

this.ChartWebControl1.BeginUpdate();

this.ChartWebControl1.Series[0].Points[0].X=1;

this.ChartWebControl1.Series[0].Points[0].YValues[0]=190;

this.ChartWebControl1.EndUpdate();

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied