DevExtreme React - Access a Point Using the API

Before accessing a series point, gain access to its series by calling the getAllSeries() method. You can call the getSeriesByName(seriesName) or getSeriesByPos(seriesIndex) method as an alternative for multi-series PieCharts.

Use the following methods to access series points. All of them return one or several objects whose fields and methods are described in the API reference's Point section.

Apart from the API methods, you can access a series point in the event handlers. For example, the onPointClick event handler gets the clicked series point in the argument.

NOTE
Each Point object contains a reference to its parent series in the series field.
See Also