org.moxieapps.gwt.highcharts.client.events
Interface PointMouseOutEventHandler


public interface PointMouseOutEventHandler

An interface that can be used as a callback handler when mouse out events are fired on the individual points in a series. General usage is as follows:

 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.

Since:
1.1.0
Author:
squinn@moxiegroup.com (Shawn Quinn)

Method Summary
 boolean onMouseOut(PointMouseOutEvent pointMouseOutEvent)
          This method is fired whenever a mouse out event occurs on an individual point.
 

Method Detail

onMouseOut

boolean onMouseOut(PointMouseOutEvent pointMouseOutEvent)
This method is fired whenever a mouse out event occurs on an individual point. See the PointMouseOutEvent class for more details on the data available when this event is fired.

Parameters:
pointMouseOutEvent - The details of the event that occurred.
Returns:
The response to send back to the event handler function.


Copyright © 2015. All Rights Reserved.