I am trying to run a simple High chart in my GWT Application but getting this error
'$wnd.Highcharts' is null or not an object
my OnModule
public void onModuleLoad() {
RootPanel.get().add(createChart());
}
public Chart createChart() {
Chartchart=newChart().setType(Series.Type.SPLINE).setChartTitleText("Lawn Tunnels").setMarginRight(10);Seriesseries=chart.createSeries().setName("Moles per Yard").setPoints(newNumber[]{163,203,276,408,547,729,628});chart.addSeries(series);returnchart;
I am trying to run a simple High chart in my GWT Application but getting this error
my OnModule
}
public Chart createChart() {
}
}
my xml
<inherits name="org.moxieapps.gwt.highcharts.Highcharts">
my HTML</inherits>
included this jar file in my classpath
Any suggestion
Thanks