Uses of Interface
org.pepstock.charba.client.options.IsEvent
-
Packages that use IsEvent Package Description 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.defaults.chart Contains the default values of chart options based on type of chart instance.org.pepstock.charba.client.defaults.globals Contains the default values of chart options for all chart types (CHART.JS options defaults).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.dom.events Contains all classes to map and manage DOM events.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.impl.plugins Contains some plugins implementations, available out-of-the box.org.pepstock.charba.client.impl.plugins.enums Contains the enumeration items to configure out of the box CHARBA plugins.org.pepstock.charba.client.options Contains all elements to configure charts at global level (know as chart global options). -
-
Uses of IsEvent in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return types with arguments of type IsEvent Modifier and Type Method Description Set<IsEvent>
ConfigurationOptions. getEvents()
Returns the browser events that the chart should listen to.Set<IsEvent>
Legend. getEvents()
Returns the browser events that the legend should listen to.Set<IsEvent>
Tooltips. getEvents()
Returns the browser events that the tooltip should listen to.Methods in org.pepstock.charba.client.configuration with parameters of type IsEvent Modifier and Type Method Description void
ConfigurationOptions. setEvents(IsEvent... events)
Sets the browser events that the chart should listen to.void
Legend. setEvents(IsEvent... events)
Sets the browser events that the legend should listen to.void
Tooltips. setEvents(IsEvent... events)
Sets the browser events that the tooltip should listen to. -
Uses of IsEvent in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return types with arguments of type IsEvent Modifier and Type Method Description Set<IsEvent>
IsDefaultEventHandler. getEvents()
Returns the browser events that the chart should listen to. -
Uses of IsEvent in org.pepstock.charba.client.defaults.chart
Methods in org.pepstock.charba.client.defaults.chart that return types with arguments of type IsEvent Modifier and Type Method Description Set<IsEvent>
DefaultChartLegend. getEvents()
Set<IsEvent>
DefaultChartTooltips. getEvents()
-
Uses of IsEvent in org.pepstock.charba.client.defaults.globals
Methods in org.pepstock.charba.client.defaults.globals that return types with arguments of type IsEvent Modifier and Type Method Description Set<IsEvent>
DefaultLegend. getEvents()
Set<IsEvent>
DefaultOptions. getEvents()
Set<IsEvent>
DefaultTooltips. getEvents()
-
Uses of IsEvent in org.pepstock.charba.client.dom
Methods in org.pepstock.charba.client.dom with parameters of type IsEvent Modifier and Type Method Description void
BaseEventTarget. addEventListener(IsEvent type, CallbackProxy.Proxy listener)
Sets up a function that will be called whenever the specified event is delivered to the target.void
BaseEventTarget. removeEventListener(IsEvent type, CallbackProxy.Proxy listener)
Removes from the event target an event listener previously registered.
The event listener to be removed is identified using a combination of the event type and the event listener function itself. -
Uses of IsEvent in org.pepstock.charba.client.dom.enums
Classes in org.pepstock.charba.client.dom.enums that implement IsEvent Modifier and Type Class Description class
KeyboardEventType
Enumerates the DOM event type of the keyboard.class
MouseEventType
Enumerates the DOM event type of the mouse.class
PointerEventType
Enumerates the DOM event type of the pointer (mouse, touch and pen).class
TouchEventType
Enumerates the DOM event type of the touch. -
Uses of IsEvent in org.pepstock.charba.client.dom.events
Methods in org.pepstock.charba.client.dom.events with parameters of type IsEvent Modifier and Type Method Description static NativeCustomEvent
NativeCustomEvent. createCustomEvent(IsEvent type)
Creates a new event object for a specific event type.static NativeCustomEvent
NativeCustomEvent. createCustomEvent(IsEvent type, EventInit init)
Creates a new event object for a specific event type with initial configuration.static NativeBaseEvent
NativeBaseEvent. createEvent(IsEvent type)
Creates a new event object for a specific event type.static NativeBaseEvent
NativeBaseEvent. createEvent(IsEvent type, EventInit init)
Creates a new event object for a specific event type with initial configuration.static NativeKeyboardEvent
NativeKeyboardEvent. createKeyboardEvent(IsEvent type)
Creates a new event object for a specific event type.static NativeKeyboardEvent
NativeKeyboardEvent. createKeyboardEvent(IsEvent type, KeyboardEventInit init)
Creates a new event object for a specific event type with initial configuration.static NativeMouseEvent
NativeMouseEvent. createMouseEvent(IsEvent type)
Creates a new event object for a specific event type.static NativeMouseEvent
NativeMouseEvent. createMouseEvent(IsEvent type, MouseEventInit init)
Creates a new event object for a specific event type with initial configuration.static NativePointerEvent
NativePointerEvent. createPointerEvent(IsEvent type)
Creates a new event object for a specific event type.static NativePointerEvent
NativePointerEvent. createPointerEvent(IsEvent type, PointerEventInit init)
Creates a new event object for a specific event type with initial configuration.static NativeTouchEvent
NativeTouchEvent. createTouchEvent(IsEvent type)
Creates a new event object for a specific event type.static NativeTouchEvent
NativeTouchEvent. createTouchEvent(IsEvent type, TouchEventInit init)
Creates a new event object for a specific event type with initial configuration. -
Uses of IsEvent in org.pepstock.charba.client.enums
Classes in org.pepstock.charba.client.enums that implement IsEvent Modifier and Type Class Description class
AnimationEventType
Enumerates the animation event type.Fields in org.pepstock.charba.client.enums with type parameters of type IsEvent Modifier and Type Field Description static KeyFactory<IsEvent>
DefaultEvents. FACTORY
Key factory instance to use for array set reading.static Set<IsEvent>
DefaultEvents. INSTANCE
Unmodifiable set with all default events. -
Uses of IsEvent in org.pepstock.charba.client.impl.plugins
Methods in org.pepstock.charba.client.impl.plugins with parameters of type IsEvent Modifier and Type Method Description void
CrosshairOptions. setEvents(IsEvent... events)
void
DatasetsItemsSelectorOptions. setEvents(IsEvent... events)
Method parameters in org.pepstock.charba.client.impl.plugins with type arguments of type IsEvent Modifier and Type Method Description void
CrosshairOptions. setEvents(Set<IsEvent> events)
void
DatasetsItemsSelectorOptions. setEvents(Set<IsEvent> events)
-
Uses of IsEvent in org.pepstock.charba.client.impl.plugins.enums
Classes in org.pepstock.charba.client.impl.plugins.enums that implement IsEvent Modifier and Type Class Description class
DatasetSeletionEventType
Enumerates the selection event type of theDatasetsItemsSelector
plugin. -
Uses of IsEvent in org.pepstock.charba.client.options
Methods in org.pepstock.charba.client.options that return IsEvent Modifier and Type Method Description static IsEvent
IsEvent. create(String event)
Returns a event instance by its string value.Methods in org.pepstock.charba.client.options that return types with arguments of type IsEvent Modifier and Type Method Description default Set<IsEvent>
HasEvents. getEvents()
Returns the browser events that the chart should listen to.Methods in org.pepstock.charba.client.options with parameters of type IsEvent Modifier and Type Method Description default void
HasEvents. setEvents(IsEvent... events)
Sets the browser events that the chart should listen to.Method parameters in org.pepstock.charba.client.options with type arguments of type IsEvent Modifier and Type Method Description default void
HasEvents. setEvents(Set<IsEvent> events)
Sets the browser events that the legend should listen to.
-