Class SeriesClickEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<Map>
com.vaadin.componentfactory.maps.events.SeriesClickEvent
- All Implemented Interfaces:
ClickEvent,HasSeries,Serializable
@DomEvent("series-click")
public class SeriesClickEvent
extends com.vaadin.flow.component.ComponentEvent<Map>
implements ClickEvent, HasSeries
The SeriesClickEvent class stores data for click events on the series of the
chart.
- Version:
- $Id: $Id
- Author:
- Vaadin
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionSeriesClickEvent(Map source, boolean fromClient, int pageX, int pageY, boolean altKey, boolean ctrlKey, boolean metaKey, boolean shiftKey, int button, double x, double y, int seriesIndex) Constructor for SeriesClickEvent. -
Method Summary
Modifier and TypeMethodDescriptionGets the mouse click detailsintReturns the index of the seriesMethods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListenerMethods inherited from class java.util.EventObject
toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface com.vaadin.componentfactory.maps.events.ClickEvent
getAbsoluteX, getAbsoluteY, getButton, getxAxisValue, getyAxisValue, isAltKey, isCtrlKey, isMetaKey, isShiftKey
-
Constructor Details
-
SeriesClickEvent
public SeriesClickEvent(Map source, boolean fromClient, @EventData("event.detail.originalEvent.pageX") int pageX, @EventData("event.detail.originalEvent.pageY") int pageY, @EventData("event.detail.originalEvent.altKey") boolean altKey, @EventData("event.detail.originalEvent.ctrlKey") boolean ctrlKey, @EventData("event.detail.originalEvent.metaKey") boolean metaKey, @EventData("event.detail.originalEvent.shiftKey") boolean shiftKey, @EventData("event.detail.originalEvent.button") int button, @EventData("event.detail.originalEvent.point.x") double x, @EventData("event.detail.originalEvent.point.y") double y, @EventData("event.detail.originalEvent.point.series.index") int seriesIndex) Constructor for SeriesClickEvent.
- Parameters:
source- aMapobject.fromClient- a boolean.pageX- a int.pageY- a int.altKey- a boolean.ctrlKey- a boolean.metaKey- a boolean.shiftKey- a boolean.button- a int.x- a double.y- a double.seriesIndex- a int.
-
-
Method Details
-
getSeriesItemIndex
public int getSeriesItemIndex()Returns the index of the series- Specified by:
getSeriesItemIndexin interfaceHasSeries- Returns:
- index of the series
-
getMouseDetails
Gets the mouse click details- Specified by:
getMouseDetailsin interfaceClickEvent- Returns:
- mouse click details
-