Interface IsDefaultInteraction
-
- All Known Implementing Classes:
DefaultChartHover
,DefaultChartInteraction
,DefaultHover
,DefaultInteraction
,Hover
,Interaction
public interface IsDefaultInteraction
Interface to define interaction object defaults.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InteractionAxis
getAxis()
Returns which directions are used in calculating distances.InteractionMode
getMode()
Returns which elements appear in the tooltip.boolean
isIntersect()
if true, the hover mode only applies when the mouse position intersects an item on the chart.
-
-
-
Method Detail
-
getMode
InteractionMode getMode()
Returns which elements appear in the tooltip.- Returns:
- which elements appear in the tooltip.
-
isIntersect
boolean isIntersect()
if true, the hover mode only applies when the mouse position intersects an item on the chart.- Returns:
- if true, the hover mode only applies when the mouse position intersects an item on the chart.
-
getAxis
InteractionAxis getAxis()
Returns which directions are used in calculating distances.- Returns:
- define which directions are used in calculating distances.
-
-