AnyChart
API Reference
Still have questions?
Contact support
Top

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

Getter for the hover mode.

Returns:

anychart.enums.HoverMode | string - Hover mode.
Setter for the hover mode.

Params:

NameTypeDescription
modeanychart.enums.HoverMode | stringHover mode to set.

Returns:

anychart.core.utils.Interactivity - Self instance for method chaining.

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:

NameTypeDefaultDescription
enabledboolean
true
Enable/disable multi select on click.

Returns:

anychart.core.utils.Interactivity - Self instance for method chaining.

selectionMode

Getter for the selection mode.

Returns:

anychart.enums.SelectionMode | string - Returns selection mode.
Setter for the selection mode.

Params:

NameTypeDescription
modeanychart.enums.SelectionMode | stringSelection mode to set.

Returns:

anychart.core.utils.Interactivity - Self instance for method chaining.

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:

NameTypeDescription
radiusnumberSpot radius to set.

Returns:

anychart.core.utils.Interactivity - Self instance for method chaining.

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.

Params:

NameTypeDefaultDescription
enabledboolean
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.