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