DJ
Davis Jebaraj
Syncfusion Team
March 9, 2005 10:08 PM UTC
Hi Dave,
You can access any of the points through the Series and Points collections:
this.chartControl1.BeginUpdate();
this.chartControl1.Series[0].Points[0].X = 6;
this.chartControl1.Series[0].Points[0].YValues[0] = 6000;
this.chartControl1.EndUpdate();
Regards,
Davis