com.vaadin.flow.component.charts.events.
Class PointMouseOutEvent
All Implemented Interfaces:
Fired when the mouse exits the neighborhood of a point
See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionPointMouseOutEvent(Chart source, boolean fromClient, int seriesIndex, int pointIndex, String pointId, String category) -
Method Summary
Modifier and TypeMethodDescriptionThe ID of the series item that is associated with the event.
intReturns the index of the series item, that is associated with this event, in
HasSeries.getSeries().intReturns the index of the series
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListenerMethods inherited from class java.util.EventObject
toString
-
Constructor Details
-
PointMouseOutEvent
public PointMouseOutEvent(Chart source, boolean fromClient, @EventData("event.detail.originalEvent.target.series.index") int seriesIndex, @EventData("event.detail.originalEvent.target.index") int pointIndex, @EventData("event.detail.originalEvent.target.id") String pointId, @EventData("event.detail.originalEvent.target.category") String category)
-
-
Method Details
-
getCategory
Specified by:
getCategoryin interfaceHasItem -
getItemIndex
public int getItemIndex()Description copied from interface:
HasItemReturns the index of the series item, that is associated with this event, in
HasSeries.getSeries(). Can be used to identify the item within the series.Example for
ListSeries:int itemIndex = event.getItemIndex(); ListSeries series = (ListSeries) event.getSeries(); Number datum = series.getData()[itemIndex];Specified by:
getItemIndexin interfaceHasItemReturns:
the index of the item in the series
See Also:
-
getItemId
Description copied from interface:
HasItemThe ID of the series item that is associated with the event. Can be used to identify the item within the series.
Example for
NodeSeries:String id = this.getItemId(); NodeSeries series = (NodeSeries) this.getSeries(); Optional<Node> nodeForId = series.getNodes().stream() .filter(node -> node.getId().equals(id)).findFirst();Only
AbstractSeriesItemandNodesupport setting an ID. For other types of series items this property will always return null. ForAbstractSeriesItemthe ID is optional. Unless the developer has explicitly set an ID for the item associated with the event, this property will be null. SeeHasItem.getItem()orHasItem.getItemIndex()for alternatives. -
getSeriesItemIndex
public int getSeriesItemIndex()Description copied from interface:
HasSeriesReturns the index of the series
Specified by:
getSeriesItemIndexin interfaceHasSeriesReturns:
-