Hello!
I'm wondering if there any possibility to invoke export function programmaticaly (from code) without user clicking on the export button? It is possible with JavaScript Highcharts lib, but how can it be done by GWT wrapper?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello!
I'm wondering if there any possibility to invoke export function programmaticaly (from code) without user clicking on the export button? It is possible with JavaScript Highcharts lib, but how can it be done by GWT wrapper?
I found solution wit using JSNI:
exportChart(chart.getNativeChart());
private static native JavaScriptObject exportChart(JavaScriptObject chart) /*-{
}-*/;
Last edit: Andrew_X 2012-07-19