public interface PointUnselectEventHandler
chart.setSeriesPlotOptions(new SeriesPlotOptions()
.setPointUnselectEventHandler(new PointUnselectEventHandler() {
public boolean onUnselect(PointUnselectEvent unselectEvent) {
Window.alert("Point unselectd: " + unselectEvent.getXAsLong() + ", " + unselectEvent.getYAsLong());
return true;
}
)
});
See the documentation on the PointUnselectEvent class for more details on the data
available when a point unselect event occurs.| Modifier and Type | Method and Description |
|---|---|
boolean |
onUnselect(PointUnselectEvent pointUnselectEvent)
This method is fired whenever a unselect event occurs on an individual point.
|
boolean onUnselect(PointUnselectEvent pointUnselectEvent)
PointUnselectEvent class for more details on the data available when this event is fired.
Return false to prevent the unselection from occurring.pointUnselectEvent - The details of the event that occurred.Copyright © 2015. All Rights Reserved.