Uses of Class
org.pepstock.charba.client.dom.events.NativeAbstractMouseEvent
-
Packages that use NativeAbstractMouseEvent Package Description org.pepstock.charba.client.dom.events Contains all classes to map and manage DOM events.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. -
-
Uses of NativeAbstractMouseEvent in org.pepstock.charba.client.dom.events
Subclasses of NativeAbstractMouseEvent in org.pepstock.charba.client.dom.events Modifier and Type Class Description class
NativeMouseEvent
Represents a mouse events that occur due to the user interacting with a pointing device.class
NativePointerEvent
Much of today's web content assumes the user's pointing device will be a mouse.
However, since many devices support other types of pointing input devices, such as pen/stylus and touch surfaces, extensions to the existing pointing device event models are needed.
Pointer events address that need. -
Uses of NativeAbstractMouseEvent in org.pepstock.charba.client.events
Constructors in org.pepstock.charba.client.events with parameters of type NativeAbstractMouseEvent Constructor Description AxisClickEvent(NativeAbstractMouseEvent nativeEvent, ScaleItem item, Axis axis, ScaleValueItem value)
Creates the event with axis related to the clickAxisEnterEvent(NativeAbstractMouseEvent nativeEvent, ScaleItem item, Axis axis)
Creates the event with axis related to the enterAxisHoverEvent(NativeAbstractMouseEvent nativeEvent, ScaleItem item, Axis axis)
Creates the event with axis related to the hoverAxisLeaveEvent(NativeAbstractMouseEvent nativeEvent, ScaleItem item, Axis axis)
Creates the event with axis related to the leaveChartEventContext(IsChart chart, NativeAbstractMouseEvent event)
Creates the object with the chart instance, creating a change native event.SubtitleClickEvent(NativeAbstractMouseEvent nativeEvent, Subtitle item)
Creates the event with subtitle related to the clickSubtitleEnterEvent(NativeAbstractMouseEvent nativeEvent, Subtitle item)
Creates the event with subtitle related to the enterSubtitleLeaveEvent(NativeAbstractMouseEvent nativeEvent, Subtitle item)
Creates the event with subtitle related to the leaveTitleClickEvent(NativeAbstractMouseEvent nativeEvent, Title item)
Creates the event with title related to the clickTitleEnterEvent(NativeAbstractMouseEvent nativeEvent, Title item)
Creates the event with title related to the enterTitleLeaveEvent(NativeAbstractMouseEvent nativeEvent, Title item)
Creates the event with title related to the leave -
Uses of NativeAbstractMouseEvent in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items with parameters of type NativeAbstractMouseEvent Modifier and Type Method Description ScaleItem
ScalesNode. getScaleIsInside(NativeAbstractMouseEvent event)
Returns the scale item if the chart event is inside of one of scales, otherwisenull
.ScaleValueItem
ScaleItem. getValueAtEvent(NativeAbstractMouseEvent event)
Returns the value on the axis related to an event position.boolean
BaseBoxItem. isInside(NativeAbstractMouseEvent event)
Returnstrue
if the chart event is inside of this box, otherwisefalse
.boolean
LegendHitBoxItem. isInside(NativeAbstractMouseEvent event)
Returnstrue
if the chart event is inside of this box, otherwisefalse
.boolean
LegendNode. isInside(NativeAbstractMouseEvent event)
boolean
ScalesNode. isInside(NativeAbstractMouseEvent event)
Returnstrue
if the chart event is inside of one of scales, otherwisefalse
.
-