The basics looks OK there, but not sure what's going on inside of your proprietary widget that could be affecting things. Do things work for you if you just add a chart directly to the layout instead of using your proprietary type, e.g. like the example on the quick start page?
This is my code :
HighChart chart = new HighChart(title, PIE, data);
VLayout vlayout = new VLayout(title);
vlayout.setHeight100();
vlayout.setWidth100();
vlayout.addMember(chart);
Tab tab = new Tab();
tab.setTitle(title);
tab.setPane(vlayout);
tab.setCanClose(true);
tabset.addTab(tab);
The HighChart class contain the showcase example code. The result is an empty tab, any solutions?
The basics looks OK there, but not sure what's going on inside of your proprietary widget that could be affecting things. Do things work for you if you just add a chart directly to the layout instead of using your proprietary type, e.g. like the example on the quick start page?
http://www.moxiegroup.com/moxieapps/gwt-highcharts/quickstart.jsp
I use the pie example of the showcase