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


public interface SeriesMouseOverEventHandler

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

 chart.setSeriesPlotOptions(new SeriesPlotOptions()
    .setSeriesMouseOverEventHandler(new SeriesMouseOverEventHandler() {
       public boolean onMouseOver(SeriesMouseOverEvent event) {
          Window.alert("Moused over series: " + event.getSeriesName());
          return true;
       }
    )
 });
 

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

Method Summary
 boolean onMouseOver(SeriesMouseOverEvent seriesMouseOverEvent)
          This method is fired whenever a mouse over event occurs on a series.
 

Method Detail

onMouseOver

boolean onMouseOver(SeriesMouseOverEvent seriesMouseOverEvent)
This method is fired whenever a mouse over event occurs on a series. See the SeriesMouseOverEvent class for more details on the data available when this event is fired.

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


Copyright © 2015. All Rights Reserved.