Class PointSelectEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.flow.component.ComponentEvent<Chart>
-
- com.vaadin.flow.component.charts.events.PointSelectEvent
-
- All Implemented Interfaces:
HasItem,HasSeries,Serializable
@DomEvent("point-select") public class PointSelectEvent extends com.vaadin.flow.component.ComponentEvent<Chart> implements HasItemThe PointSelectEvent class stores data for select events on the points of the chart.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description PointSelectEvent(Chart source, boolean fromClient, int seriesIndex, String category, int pointIndex, String pointId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCategory()StringgetItemId()The ID of the series item that is associated with the event.intgetItemIndex()Returns the index of the series item, that is associated with this event, inHasSeries.getSeries().intgetSeriesItemIndex()Returns the index of the series-
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListener
-
Methods inherited from class java.util.EventObject
toString
-
-
-
-
Constructor Detail
-
PointSelectEvent
public PointSelectEvent(Chart source, boolean fromClient, @EventData("event.detail.originalEvent.target.series.index") int seriesIndex, @EventData("event.detail.originalEvent.target.category") String category, @EventData("event.detail.originalEvent.target.index") int pointIndex, @EventData("event.detail.originalEvent.target.id") String pointId)
-
-
Method Detail
-
getSeriesItemIndex
public int getSeriesItemIndex()
Description copied from interface:HasSeriesReturns the index of the series- Specified by:
getSeriesItemIndexin interfaceHasSeries- Returns:
-
getCategory
public String 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, inHasSeries.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 interfaceHasItem- Returns:
- the index of the item in the series
- See Also:
HasItem.getItem(),HasItem.getItemId()
-
getItemId
public String 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.- Specified by:
getItemIdin interfaceHasItem- Returns:
- the ID of the series item associated with the event, or null if the series item has no ID
- See Also:
HasItem.getItem(),HasItem.getItemIndex()
-
-