Posted 21 June 2023, 1:42 am EST
Hello, I am able to plot the data in Legacy Component One Chart. Is it possible to get the Data source i.e. X and Y value of the plotted chart?
Forums Home / ComponentOne / WinForms Edition
Posted by: amit.jain3 on 21 June 2023, 1:42 am EST
Posted 21 June 2023, 1:42 am EST
Hello, I am able to plot the data in Legacy Component One Chart. Is it possible to get the Data source i.e. X and Y value of the plotted chart?
Posted 22 June 2023, 8:05 am EST
Hi Amit,
In order to get the DataSource X and Y points. Then you can get this by below code:(see code snippet)
c1Chart1.ChartGroups[0].ChartData.SeriesList[0].PointData;
Please refer the attached sample for the same: ChartPointData.zip
Best Regards,
Nitin
Posted 27 June 2023, 2:28 am EST
Thank you Nitin.