class anychart.core.utils.Interactivity Improve this Doc
Extends: anychart.core.Base
Interactivity class for charts.
Learn more about the interactivity.
Methods Overview
Specific settings | |
hoverMode() | Hover mode. |
multiSelectOnClick() | Multi-select on click settings. |
selectionMode() | Selection mode. |
spotRadius() | Spot radius. |
unselectOnClickOutOfPoint() | Unselect on click settings. |
Methods Description
hoverMode
Setter for the hover mode.
Params:
Name | Type | Description |
---|---|---|
mode | anychart.enums.HoverMode | string | Hover mode to set. |
Returns:
anychart.core.utils.Interactivity - Self instance for method chaining.Try it:
multiSelectOnClick
Getter for the multi-select on click.
Returns:
boolean - Return enable/disable state. See listing
var interactivity = chart.interactivity(); var multiSelectOnClick = interactivity.multiSelectOnClick();
Setter for the multi-select on click.
Params:
Name | Type | Default | Description |
---|---|---|---|
enabled | boolean | true | Enable/disable multi select on click. |
Returns:
anychart.core.utils.Interactivity - Self instance for method chaining.Try it:
selectionMode
Getter for the selection mode.
Returns:
anychart.enums.SelectionMode | string - Returns selection mode.Try it:
Setter for the selection mode.
Params:
Name | Type | Description |
---|---|---|
mode | anychart.enums.SelectionMode | string | Selection mode to set. |
Returns:
anychart.core.utils.Interactivity - Self instance for method chaining.Try it:
spotRadius
Getter for the spot radius.
Returns:
number - Returns spot radius.Setter for the spot radius.
Size of the area under cursor in pixels for radius hovering.
Note: Works only with "by-spot" value in the anychart.core.utils.Interactivity#hoverMode method.
Params:
Name | Type | Description |
---|---|---|
radius | number | Spot radius to set. |
Returns:
anychart.core.utils.Interactivity - Self instance for method chaining.Try it:
unselectOnClickOutOfPoint
Getter for the unselectOnClickOutOfPoint.
Returns:
boolean - Return enable/disable state.Setter for the unselectOnClickOutOfPoint.
If the value is true, disables select all points when clicking outside the chart point.
If the value is true, disables select all points when clicking outside the chart point.
Params:
Name | Type | Default | Description |
---|---|---|---|
enabled | boolean | value for Pie chart is false, for other chart types is true | Enable/disable unselect on click. |
Returns:
anychart.core.utils.Interactivity - Self instance for method chaining.Try it: