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


public interface ChartRedrawEventHandler

An interface that can be used as a callback handler whenever the core chart's "redraw" event is fired. General usage is as follows:

 chart.setRedrawEventHandler(new ChartRedrawEventHandler() {
    public boolean onRedraw(ChartRedrawEvent redrawEvent) {
       Window.alert("The chart has been redrawn");
       return true;
    }
 });
 

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

Method Summary
 boolean onRedraw(ChartRedrawEvent chartRedrawEvent)
          This method is fired whenever the chart's redraw event occurs.
 

Method Detail

onRedraw

boolean onRedraw(ChartRedrawEvent chartRedrawEvent)
This method is fired whenever the chart's redraw event occurs.

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


Copyright © 2015. All Rights Reserved.