There isn't a direct wrapper provided method to manage the "lang" options via GWT Highcharts at this time, because the "lang" options are managed globally instead of per chart. So, you can either do something like the following in Javascript within your host file:
Or, if you wanted to stay in Java/GWT you could write a JSNI method that did the same. E.g. something like:
public static native void setGlobalOptions() /*-{
$wnd.Highcharts.setOptions({
lang: {
resetZoom: 'Hi There',
resetZoomText: 'Click to reset'
}
});
}-*/;
I don't believe Highcharts currently provides for any additional configuration support over the display of the "reset" button though, other than the text of the button.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Can you try wrapping the path with "url()" like so:
And let us know if that does what you're looking for?
There isn't a direct wrapper provided method to manage the "lang" options via GWT Highcharts at this time, because the "lang" options are managed globally instead of per chart. So, you can either do something like the following in Javascript within your host file:
Or, if you wanted to stay in Java/GWT you could write a JSNI method that did the same. E.g. something like:
I don't believe Highcharts currently provides for any additional configuration support over the display of the "reset" button though, other than the text of the button.