public interface PointMouseOverEventHandler
chart.setSeriesPlotOptions(new SeriesPlotOptions()
.setPointMouseOverEventHandler(new PointMouseOverEventHandler() {
public boolean onMouseOver(PointMouseOverEvent event) {
Window.alert("User moused over point: " + event.getXAsLong() + ", " + event.getYAsLong());
return true;
}
)
});
See the documentation on the PointMouseOverEvent class for more details on the data
available when a point mouse over event occurs.| Modifier and Type | Method and Description |
|---|---|
boolean |
onMouseOver(PointMouseOverEvent pointMouseOverEvent)
This method is fired whenever a mouse over event occurs on an individual point.
|
boolean onMouseOver(PointMouseOverEvent pointMouseOverEvent)
PointMouseOverEvent class for more details on the data available when this event is fired.
pointMouseOverEvent - The details of the event that occurred.Copyright © 2015. All Rights Reserved.