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 booleanBaseEventTarget. dispatchEvent(HasNativeEvent event)Dispatches anAbstractEventat 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 booleanKeyboardModifierKey. arePressed(HasNativeEvent event, KeyboardModifierKey... keys)Returnstrueif all modifier keys are pressed when the event was emitted.default booleanIsKeyboardKey. is(HasNativeEvent event)Returnstrueif the key is the same of the event.booleanKeyboardModifierKey. isPressed(HasNativeEvent event)Returnstrueif 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 booleanModifierKey. arePressed(HasNativeEvent event, ModifierKey... keys)Returnstrueif all modifier keys are pressed when the event was emitted.booleanModifierKey. isPressed(HasNativeEvent event)Returnstrueif 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 interfaceIsChartEventInterface which maps a chart event, an event generated from CHART.JS.(package private) interfaceorg.pepstock.charba.client.events.IsCommonChartEventInterface which maps a common chart event, an event generated from CHART.JS.interfaceIsLegendEventInterface 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 classAbstractEventAbstract event for all events which must contain a native event.
This event contains the chart instance as source.classAnimationCompleteEventEvent which is fired when the animation of the chart is completed.classAnimationProgressEventEvent which is fired when the animation of the chart is progressing.classAxisClickEventEvent which is fired when the user clicks on the axis of the chart.classAxisEnterEventEvent which is fired when the user is entering on the axis of the chart.classAxisHoverEventEvent which is fired when the user is hovering on the axis of the chart.classAxisLeaveEventEvent which is fired when the user is leaving from the axis of the chart.classChartClickEventEvent which is fired when the user clicks on the chart.classChartEventContextThis is the class which can wrap a CHART.JS event.classChartHoverEventEvent which is fired when the user hovers on the chart.classChartResizeEventEvent which is fired when the chart has been resized.classDatasetRangeCleanSelectionEventEvent which is fired when the user cleans an area on the chart, byDatasetsItemsSelector.IDplugin.classDatasetRangeSelectionEventEvent which is fired when the user selects an area on the chart, byDatasetsItemsSelector.IDplugin.classDatasetSelectionEventEvent 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.classLegendClickEventEvent which is fired when the user clicks on the legend of the chart.classLegendHoverEventEvent which is fired when the user hovers on the legend of the chart.classLegendLeaveEventEvent which is fired when the user leaves on the legend of the chart.classSubtitleClickEventEvent which is fired when the user clicks on the subtitle of the chart.classSubtitleEnterEventEvent which is fired when the user enters on the subtitle of the chart.classSubtitleLeaveEventEvent which is fired when the user leaves on the subtitle of the chart.classTitleClickEventEvent which is fired when the user clicks on the title of the chart.classTitleEnterEventEvent which is fired when the user enters on the title of the chart.classTitleLeaveEventEvent 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 ScaleValueItemScaleItem. 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 booleanIsEvent. is(HasNativeEvent container)Checks if the event type is equals to the event type passed in the event container.
-