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)
Parameters:
point:
To learn about point selection, refer to the Selection Handling section.
getAllPoints()
NOTE
A series point is a data object's visual representation. It can be selected, hovered over, or hidden. You can access the data object that the series point represents using the point's data field.
getVisiblePoints()
NOTE
This method does not change the behavior if you hide the series. However, if you hide a series point with the hide() method, it will no longer be considered visible.
isSelected()
Return Value:
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.
selectPoint(point)
Parameters:
point:
For information on point selection, refer to the Selection Handling section.
Feedback