Have you cleared your browser cache every time you tested it (also project->clean, gwt build etc can help) ?
Test project (exact same config)
gwt.xml
<?xml version="1.0" encoding="UTF-8"?><modulerename-to='highchartsrescue'><!-- Inherit the core Web Toolkit stuff. --><inheritsname='com.google.gwt.user.User'/><inheritsname='com.google.gwt.user.theme.clean.Clean'/><!-- Other module inherits --><inheritsname="org.moxieapps.gwt.highcharts.Highcharts"/><!-- Specify the app entry point class. --><entry-pointclass='com.kombucha.hcrescue.client.HighchartsRescue'/><!-- Specify the paths for translatable code --><sourcepath='client'/><sourcepath='shared'/></module>
Entry point :
publicclassHighchartsRescueimplementsEntryPoint{publicvoidonModuleLoad(){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);RootPanel.get().add(chart);}}
Have you cleared your browser cache every time you tested it (also project->clean, gwt build etc can help) ?
Test project (exact same config)
gwt.xml
Entry point :
html :
Works just fine.
kthxbai