JavaScript/jQuery PolarChart - Series.Methods
Methods used to control the series.
clearSelection()
Cancels the selection of this particular series. The series is displayed in its initial style.
To cancel the selection of all chart series, call the clearSelection() method of the UI component instance.
See Also
deselectPoint(point)
Deselects the specified point. The point is displayed in an initial style.
The point to be deselected.
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.
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.
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.
selectPoint(point)
Selects the specified point. The point is displayed in a 'selected' style.
The point to be selected.
If you have technical questions, please create a support ticket in the DevExpress Support Center.