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


public interface AxisSetExtremesEventHandler

An interface that can be used as a callback handler when axis setExtremes events are fired on the axis. General usage is as follows:

 chart.getXAxis().setAxisSetExtremesEventHandler(new AxisSetExtremesEventHandler() {
       public boolean onSetExtremes(AxisSetExtremesEvent event) {
          Window.alert("Axis extremes changed: " + event.getMin() + " - " + event.getMax());
          return true;
       }
    )
 });
 

Since:
1.3.0
Author:
myersj@gmail.com (Jeff Myers)

Method Summary
 boolean onSetExtremes(AxisSetExtremesEvent axisSetExtremesEvent)
          This method is fired whenever an axis's extremes are changed.
 

Method Detail

onSetExtremes

boolean onSetExtremes(AxisSetExtremesEvent axisSetExtremesEvent)
This method is fired whenever an axis's extremes are changed.

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


Copyright © 2015. All Rights Reserved.