Interface IsDefaultInteraction
- 
- All Known Implementing Classes:
- DefaultChartHover,- DefaultChartInteraction,- DefaultHover,- DefaultInteraction,- Hover,- Interaction,- InteractionOptions
 
 public interface IsDefaultInteractionInterface to define interaction object defaults.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default InteractionOptionscreate()Creates anInteractionOptionsusing the configuration defined in this interaction.InteractionAxisgetAxis()Returns which directions are used in calculating distances.IsInteractionModegetMode()Returns which elements appear in the tooltip.booleanisIncludeInvisible()If true, the invisible points that are outside of the chart area will also be included when evaluating interactions.booleanisIntersect()If true, the hover mode only applies when the mouse position intersects an item on the chart.
 
- 
- 
- 
Method Detail- 
getModeIsInteractionMode getMode() Returns which elements appear in the tooltip.- Returns:
- which elements appear in the tooltip.
 
 - 
isIntersectboolean 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.
 
 - 
getAxisInteractionAxis getAxis() Returns which directions are used in calculating distances.- Returns:
- define which directions are used in calculating distances.
 
 - 
isIncludeInvisibleboolean isIncludeInvisible() If true, the invisible points that are outside of the chart area will also be included when evaluating interactions.- Returns:
- if true, the invisible points that are outside of the chart area will also be included when evaluating interactions.
 
 - 
createdefault InteractionOptions create() Creates anInteractionOptionsusing the configuration defined in this interaction.- Returns:
- an InteractionOptionsusing the configuration defined in this interaction
 
 
- 
 
-