-
Notifications
You must be signed in to change notification settings - Fork 48
Highcharts Feature: Global Configuration
Alexander Nedomansky edited this page Mar 27, 2018
·
1 revision
Supported by:
Global configuration is a feature of Highcharts to define configration parameters globally for all charts on a page.
Simply add a Global configuration toyour chart Options. The Wicket component will automatically call the required javascript to tell Highcharts to use the global configuration.
options.setGlobal(new Global()
.setUTC(Boolean.FALSE));
Note that if multiple charts on the same page each define a Global configuration, the last one will win and override all others!
Adding a Global configuration currently has no effect using JSF. You have to define global configuration manually in javascript:
Highcharts.setOptions({
global : {
useUTC : false
}
});