Uses of Class
org.pepstock.charba.client.items.InteractionOptions
-
Packages that use InteractionOptions Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.configuration Contains all elements to configure a chart instance (know as chart options at instance level).org.pepstock.charba.client.defaults Contains all interfaces need to provide defaults values of the chart options.org.pepstock.charba.client.enums Contains all enumerations of some chart options where only a specific set of values can be set.org.pepstock.charba.client.gwt.widgets Contains all charts classes wrapped as GWT widget in order to enable to use inside to GWT UIBinder.org.pepstock.charba.client.interaction Contains all classes to implement a custom interactions for CHART.JS. -
-
Uses of InteractionOptions in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type InteractionOptions Modifier and Type Method Description DatasetReference
AbstractChart. getElementAtEvent(NativeBaseEvent event, InteractionOptions interaction)
Calling on your chart instance passing an argument of an event, will return the single element at the event position.
If there are multiple items within range, only the first is returned.DatasetReference
IsChart. getElementAtEvent(NativeBaseEvent event, InteractionOptions interaction)
Calling on your chart instance passing an argument of an event, will return the single element at the event position.
If there are multiple items within range, only the first is returned.List<DatasetReference>
AbstractChart. getElementsAtEvent(NativeBaseEvent event, InteractionOptions interaction)
Looks for the element under the event point, then returns all elements at the same data index.
Calling it on your chart instance passing an argument of an event, will return the point elements that are at that the same position of that event.List<DatasetReference>
IsChart. getElementsAtEvent(NativeBaseEvent event, InteractionOptions interaction)
Looks for the element under the event point, then returns all elements at the same data index.
Calling it on your chart instance passing an argument of an event, will return the point elements that are at that the same position of that event. -
Uses of InteractionOptions in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return InteractionOptions Modifier and Type Method Description InteractionOptions
Interaction. create()
Creates anInteractionOptions
using the configuration defined in this interaction. -
Uses of InteractionOptions in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return InteractionOptions Modifier and Type Method Description default InteractionOptions
IsDefaultInteraction. create()
Creates anInteractionOptions
using the configuration defined in this interaction. -
Uses of InteractionOptions in org.pepstock.charba.client.enums
Methods in org.pepstock.charba.client.enums with parameters of type InteractionOptions Modifier and Type Method Description List<InteractionItem>
DefaultInteractionMode. invoke(IsChart chart, ChartEventContext event, InteractionOptions options, boolean useFinalPosition)
-
Uses of InteractionOptions in org.pepstock.charba.client.gwt.widgets
Methods in org.pepstock.charba.client.gwt.widgets with parameters of type InteractionOptions Modifier and Type Method Description DatasetReference
AbstractChartWidget. getElementAtEvent(NativeBaseEvent event, InteractionOptions interaction)
List<DatasetReference>
AbstractChartWidget. getElementsAtEvent(NativeBaseEvent event, InteractionOptions interaction)
-
Uses of InteractionOptions in org.pepstock.charba.client.interaction
Methods in org.pepstock.charba.client.interaction with parameters of type InteractionOptions Modifier and Type Method Description List<InteractionItem>
Interactioner. invoke(IsChart chart, ChartEventContext event, InteractionOptions options, boolean useFinalPosition)
Returns items which must be managed by CHART.JS event or hovering handler and by tooltips.
-