Package org.pepstock.charba.client.interaction
Contains all classes to implement a custom interactions for CHART.JS.
- Author:
- Andrea "Stock" Stocchero
-
Interface Summary Interface Description ExtendedInteraction This class can be used when a custom interaction mode is already available and implemented in java script (for instance, controllers or plugins which added a specific interaction mode).
Java script FUNCTION callback called to invoke a custom interactioner.Interactioner Interface to be implemented to create a custom interaction mode where you can decide how and which elements will be managed interacting with chart events and tooltips. -
Class Summary Class Description AbstractInteractioner Abstract class which implements a interactioner.
It helps to create a custom interactioner, creating a custom interaction mode using the name as string passed as argument.InteractionEnvelop<T> This object is a container of hidden object.
It can not be instantiated in order that public methods can be invoked in safe mode.Interactions Manages the chart interaction modes.
With a custom interaction mode you can decide how and which elements will be managed interacting with chart events.NativeInteraction Enables the capability to create custom interaction directly in java script language.
This could be helpful when for performance reason, you don't want to wraps all objects.