Uses of Interface
org.pepstock.charba.client.events.HasNativeEvent
-
Packages that use HasNativeEvent Package Description org.pepstock.charba.client.dom Contains all classes needed to work with DOM tree, base classes of a DOM tree.org.pepstock.charba.client.dom.enums Contains enumerations used inside the DOM tree to set properties or invokes methods of elements or items.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.events Contains all events to interact with chart instance.org.pepstock.charba.client.items Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers.org.pepstock.charba.client.options Contains all elements to configure charts at global level (know as chart global options). -
-
Uses of HasNativeEvent in org.pepstock.charba.client.dom
Methods in org.pepstock.charba.client.dom with parameters of type HasNativeEvent Modifier and Type Method Description boolean
BaseEventTarget. dispatchEvent(HasNativeEvent event)
Dispatches anAbstractEvent
at the specifiedBaseEventTarget
, (synchronously) invoking the affected event listeners in the appropriate order. -
Uses of HasNativeEvent in org.pepstock.charba.client.dom.enums
Methods in org.pepstock.charba.client.dom.enums with parameters of type HasNativeEvent Modifier and Type Method Description static boolean
KeyboardModifierKey. arePressed(HasNativeEvent event, KeyboardModifierKey... keys)
Returnstrue
if all modifier keys are pressed when the event was emitted.default boolean
IsKeyboardKey. is(HasNativeEvent event)
Returnstrue
if the key is the same of the event.boolean
KeyboardModifierKey. isPressed(HasNativeEvent event)
Returnstrue
if the modifier key is pressed when the event was emitted. -
Uses of HasNativeEvent in org.pepstock.charba.client.enums
Methods in org.pepstock.charba.client.enums with parameters of type HasNativeEvent Modifier and Type Method Description static boolean
ModifierKey. arePressed(HasNativeEvent event, ModifierKey... keys)
Returnstrue
if all modifier keys are pressed when the event was emitted.boolean
ModifierKey. isPressed(HasNativeEvent event)
Returnstrue
if the modifier key is pressed when the event was emitted. -
Uses of HasNativeEvent in org.pepstock.charba.client.events
Subinterfaces of HasNativeEvent in org.pepstock.charba.client.events Modifier and Type Interface Description interface
IsChartEvent
Interface which maps a chart event, an event generated from CHART.JS.(package private) interface
org.pepstock.charba.client.events.IsCommonChartEvent
Interface which maps a common chart event, an event generated from CHART.JS.interface
IsLegendEvent
Interface which maps a legend chart event, an event generated from CHART.JS.Classes in org.pepstock.charba.client.events that implement HasNativeEvent Modifier and Type Class Description class
AbstractEvent
Abstract event for all events which must contain a native event.
This event contains the chart instance as source.class
AnimationCompleteEvent
Event which is fired when the animation of the chart is completed.class
AnimationProgressEvent
Event which is fired when the animation of the chart is progressing.class
AxisClickEvent
Event which is fired when the user clicks on the axis of the chart.class
AxisEnterEvent
Event which is fired when the user is entering on the axis of the chart.class
AxisHoverEvent
Event which is fired when the user is hovering on the axis of the chart.class
AxisLeaveEvent
Event which is fired when the user is leaving from the axis of the chart.class
ChartClickEvent
Event which is fired when the user clicks on the chart.class
ChartEventContext
This is the class which can wrap a CHART.JS event.class
ChartHoverEvent
Event which is fired when the user hovers on the chart.class
ChartResizeEvent
Event which is fired when the chart has been resized.class
DatasetRangeCleanSelectionEvent
Event which is fired when the user cleans an area on the chart, byDatasetsItemsSelector.ID
plugin.class
DatasetRangeSelectionEvent
Event which is fired when the user selects an area on the chart, byDatasetsItemsSelector.ID
plugin.class
DatasetSelectionEvent
Event which is fired when the user clicks on the chart and selects a dataset.
This event doesn't suppress the click event on the chart.class
LegendClickEvent
Event which is fired when the user clicks on the legend of the chart.class
LegendHoverEvent
Event which is fired when the user hovers on the legend of the chart.class
LegendLeaveEvent
Event which is fired when the user leaves on the legend of the chart.class
SubtitleClickEvent
Event which is fired when the user clicks on the subtitle of the chart.class
SubtitleEnterEvent
Event which is fired when the user enters on the subtitle of the chart.class
SubtitleLeaveEvent
Event which is fired when the user leaves on the subtitle of the chart.class
TitleClickEvent
Event which is fired when the user clicks on the title of the chart.class
TitleEnterEvent
Event which is fired when the user enters on the title of the chart.class
TitleLeaveEvent
Event which is fired when the user leaves on the title of the chart. -
Uses of HasNativeEvent in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items with parameters of type HasNativeEvent Modifier and Type Method Description ScaleValueItem
ScaleItem. getValueAtEvent(HasNativeEvent container)
Returns the value on the axis related to an event position. -
Uses of HasNativeEvent in org.pepstock.charba.client.options
Methods in org.pepstock.charba.client.options with parameters of type HasNativeEvent Modifier and Type Method Description default boolean
IsEvent. is(HasNativeEvent container)
Checks if the event type is equals to the event type passed in the event container.
-