dataPoints()
Home > @gooddata/sdk-ui > IDataSeries > dataPoints
IDataSeries.dataPoints() method
Signature:
dataPoints(): DataPoint[];
Returns:
- all data points in this series
Remarks
the series is iterable over data points; if you want to iterate using for-of loop then it is not necessary to call this method - just use for (const dataPoint of series) {...}