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


public interface SeriesMouseOutEventHandler

An interface that can be used as a callback handler when series mouse out events are fired on the chart. If the PlotOptions.setStickyTracking(boolean) option is true, the mouse out eventd oesn't happen before the mouse enters another graph or leaves the plot area. General usage is as follows:

 chart.setSeriesPlotOptions(new SeriesPlotOptions()
    .setSeriesMouseOutEventHandler(new SeriesMouseOutEventHandler() {
       public boolean onMouseOut(SeriesMouseOutEvent event) {
          Window.alert("Moused out series: " + event.getSeriesName());
          return true;
       }
    )
 });
 

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

Method Summary
 boolean onMouseOut(SeriesMouseOutEvent seriesMouseOutEvent)
          This method is fired whenever a mouse out event occurs on a series.
 

Method Detail

onMouseOut

boolean onMouseOut(SeriesMouseOutEvent seriesMouseOutEvent)
This method is fired whenever a mouse out event occurs on a series. See the SeriesMouseOutEvent class for more details on the data available when this event is fired.

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


Copyright © 2015. All Rights Reserved.