React PolarChart - Series.Methods
Methods used to control the series.
clearSelection()
Unselects all the selected points of the series. The points are displayed in an initial style.
To learn about point selection, refer to the Selection Handling section.
deselectPoint(point)
Deselects the specified point. The point is displayed in an initial style.
The point to be deselected.
To learn about point selection, refer to the Selection Handling section.
getAllPoints()
Gets all points in the series.
getPointByPos(positionIndex)
Gets a series point with the specified index.
A zero-based index. Series points are indexed according to their drawing order.
A series point found by the index.
hover()
Switches the series into the hover state, the same as when a user places the mouse pointer on it.
See Also
isHovered()
Provides information about the hover state of a series.
Hover state of a series.
When a series is hovered over, this method returns true. Otherwise, the returned value is false.
To learn more about point and series hover operation, refer to the Hover Handling topic.
isSelected()
Provides information about the selection state of a series.
Selection state of a series.
When a series is selected, this method returns true. Otherwise, the returned value is false.
You can select a series using its select() method. To learn more about point and series selection, refer to the Selection Handling topic.
isVisible()
Provides information about the visibility state of a series.
Visibility state of a series.
When a series is visible, this method returns true. Otherwise, the returned value is false.
You can make a series visible using its show() method, or hide a series using its hide() method.
select()
Selects the series.
To learn about series selection, refer to the Selection Handling section.
selectPoint(point)
Selects the specified point. The point is displayed in a 'selected' style.
The point to be selected.
For information on point selection, refer to the Selection Handling section.
If you have technical questions, please create a support ticket in the DevExpress Support Center.