Files
sailing-analytics/java/org.moxieapps.gwt.highcharts/README.md
T
Benjamin Barth ec81896034 Moved JSNI method to show reset zoom button to BaseChart and added a
README.md to document patch on the highcharts sources.
2016-07-18 11:54:09 +02:00

18 lines
625 B
Markdown

# Patches to GWT Highcharts Wrapper API
## Show reset zoom button
Added method to `org.moxieapps.gwt.highcharts.client.BaseChart` to provide highcharts functionality in Java API:
```
/**
* Patch, to provide highcharts functionality in Java API.
*/
public native void showResetZoom() /*-{
var chart = this.@org.moxieapps.gwt.highcharts.client.BaseChart::chart;
if (chart) chart.showResetZoom();
}-*/;
```
## Other changes
Some other change in the following classes are not documented yet:
- `org.moxieapps.gwt.highcharts.client.BaseChart`
- `org.moxieapps.gwt.highcharts.client.Series`