JavaScript/jQuery PieChart - Point.Methods
Methods used to control the series point.
getLabel()
Allows you to obtain the label of the series point.
The point label.
This method returns an array of two Label objects if a series point has two labels, like in a range bar or range area series. Otherwise, it returns a single Label object.
hideTooltip()
Hides the tooltip of the point.
The hideTooltip() and showTooltip() methods allow you to change tooltip visibility in code. Call the point's hideTooltip() method to hide the tooltip of this point.
hover()
Switches the point 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 point.
Hover state of a point.
When a point is hovered over, this method returns true. Otherwise, the returned value is false.
isSelected()
Provides information about the selection state of a point.
Selection state of a point.
When a point is selected, this method returns true. Otherwise, the returned value is false.
isVisible()
Provides information about the visibility state of a point.
Visibility state of a point.
When a point is visible, this method returns true. Otherwise, the returned value is false.
You can make a point visible using its show() method or hide a point using its hide() method.
select()
Selects the point. The point is displayed in a 'selected' style until another point is selected or the current point is deselected programmatically.
showTooltip()
Shows the tooltip of the point.
The hideTooltip() and showTooltip() methods allow you to change tooltip visibility in code. Call the point's showTooltip() method to show the tooltip of this point.
If you have technical questions, please create a support ticket in the DevExpress Support Center.