Uses of Class
org.pepstock.charba.client.items.InteractionItem
-
Packages that use InteractionItem 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.gwt.widgets Contains all charts classes wrapped as GWT widget in order to enable to use inside to GWT UIBinder. -
-
Uses of InteractionItem in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type InteractionItem Modifier and Type Method Description DatasetReference
AbstractChart. getElementAtEvent(BaseNativeEvent event, InteractionItem 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(BaseNativeEvent event, InteractionItem 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(BaseNativeEvent event, InteractionItem 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(BaseNativeEvent event, InteractionItem 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 InteractionItem in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return InteractionItem Modifier and Type Method Description InteractionItem
Interaction. create()
Creates anInteractionItem
using the configuration defined in this interaction. -
Uses of InteractionItem in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return InteractionItem Modifier and Type Method Description default InteractionItem
IsDefaultInteraction. create()
Creates anInteractionItem
using the configuration defined in this interaction. -
Uses of InteractionItem in org.pepstock.charba.client.gwt.widgets
Methods in org.pepstock.charba.client.gwt.widgets with parameters of type InteractionItem Modifier and Type Method Description DatasetReference
AbstractChartWidget. getElementAtEvent(BaseNativeEvent event, InteractionItem interaction)
List<DatasetReference>
AbstractChartWidget. getElementsAtEvent(BaseNativeEvent event, InteractionItem interaction)
-