Hi
How do I extract data from a ChartSeries? Like below:
List<ChartSeries> myChartSeries = snapshot.data;
Trying to get the first data from the first series
I tried myDateTimeValue = myChartSeries.first.dataSource.first[0];
But I got error.
Please help. Thank you