JavaScript/jQuery Chart - Label.Methods
Methods used to control the point label.
getBoundingRect()
Gets the parameters of the label's minimum bounding rectangle (MBR).
An object with the following content: { x: numeric, y: numeric, height: numeric, width: numeric }.
The object returned by this method contains the X and Y coordinates of the upper-left corner of the MBR. These coordinates are relative to the client area (UI component's container). Additionally, the returned object contains the height and width of the MBR.
hide()
Hides the point label.
hide(holdInvisible)
Hides the point label and keeps it invisible until the show() method is called.
Specifies whether to keep the point label invisible.
isVisible()
Checks whether the point label is visible.
true if the point label is visible; otherwise false.
show()
Shows the point label.
show(holdVisible)
Shows the point label and keeps it visible until the hide() method is called.
Specifies whether to keep the point label visible.