org.moxieapps.gwt.highcharts.client
Class Highcharts

java.lang.Object
  extended by org.moxieapps.gwt.highcharts.client.Highcharts

public class Highcharts
extends Object

A utility class that can be used to globally configure options for Highcharts. These options should be configured prior to the initialization of any chart instance.

Example usage:

   Highcharts.setOptions(
     new Highcharts.Options().setGlobal(
         new Global()
           .setUseUTC(false)
   ));
 

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

Nested Class Summary
static class Highcharts.Options
          A configurable class that can be used to globally configure options for Highcharts.
 
Method Summary
static void setOptions(Highcharts.Options options)
          Sets the options globally for all charts created after this has been called.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

setOptions

public static void setOptions(Highcharts.Options options)
Sets the options globally for all charts created after this has been called.

Parameters:
options - the global options to use


Copyright © 2015. All Rights Reserved.