Data tip interaction
A data tip interaction allows you to display data tips within a chart without
having to select any buttons in the axes toolbar. To enable data tips, set the
Interactions
property of the axes to a
dataTipInteraction
object. When this interaction is enabled, the data tips
appear when you hover, click, or tap within the chart.
To enable multiple interactions, set the Interactions
property to an
array of objects.
d = dataTipInteraction
creates a data tip interaction object.
With this interaction enabled, clicking or tapping displays a data tip at the nearest data
point.
d = dataTipInteraction('SnapToDataVertex',snap)
specifies whether
data tips snap to the nearest data point. When snap
is
'off'
, clicking or tapping displays a data tip at the exact cursor
location instead.
The dataTipInteraction
function is not supported in the Live
Editor.
To customize the content of the data tips, set the
DataTipTemplate
property of the chart object. For more information,
see Create Custom Data Tips.
In most cases, the axes have a default set of interactions which depend on the type of chart you are displaying. You can replace the default set with a new set of interactions, but you cannot access or modify any of the interactions in the default set.
disableDefaultInteractivity
| enableDefaultInteractivity
| panInteraction
| regionZoomInteraction
| rotateInteraction
| rulerPanInteraction
| zoomInteraction