
com.vaadin.flow.component.charts.events.SeriesMouseOverEvent Maven / Gradle / Ivy
/**
* Copyright (C) 2000-2023 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.flow.component.charts.events;
import com.vaadin.flow.component.ComponentEvent;
import com.vaadin.flow.component.DomEvent;
import com.vaadin.flow.component.EventData;
import com.vaadin.flow.component.charts.Chart;
/**
* Fired when the mouse moves within the neighborhood of a series
*/
@DomEvent("series-mouse-over")
public class SeriesMouseOverEvent extends ComponentEvent
implements HasSeries {
private final int seriesIndex;
public SeriesMouseOverEvent(Chart source, boolean fromClient,
@EventData("event.detail.originalEvent.target.index") int seriesIndex) {
super(source, fromClient);
this.seriesIndex = seriesIndex;
}
@Override
public int getSeriesItemIndex() {
return seriesIndex;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy