chart_set_enable_tooltip
Enables or disables the use of chart tooltip.
Syntax
chart_set_enable_tooltip(chart, enable)
| Argument | Description |
|---|---|
| chart | The chart id to add to. |
| enable | Whether the chart tooltip is enable (true) or not (false). |
Return: True
Description
This function can be used to enable showing chart tooltip (true) or not (false). A chart tooltip consists of detail information about the current data when mouse hovering on it.

Example
chart_set_enable_tooltip(chartBalanced, false);
This will set the chart indexed in the variable "chart Balanced" to disable the tooltip.