I have recently discovered highcharts and am practicing with them, but I cannot find any in depth tutorials on highcharts using gwt out there. I've looked everywhere and they all seem to be in javascript. I have looked at the moxie site, but I really would like more than that. Particularly when it comes to designing a donut pie chart. I am having trouble designing one and there are no gwt examples out there. So does anyone know of a good tutorial for highcharts and also how to make a donut chart using gwt?
I got a really basic pie chart, but I have no idea how to continue on and create a donut pie chart, where there is an outer ring and an inner circle.
public void onLoad(){
Chart chart = new Chart()
.setType(Series.Type.PIE)
.setChartTitleText("Internet Usage")
.setMarginRight(10)
.setPiePlotOptions(new PiePlotOptions()
.setInnerSize(200));
Series series = chart.createSeries()
.setName("Internets")
.setPoints(new Point[]{
new Point("FireFox", 45.0),
new Point("IE", 26.8),
new Point("Chrome", 12.8),
new Point("Safari", 8.5),
new Point("Opera", 6.2),
new Point("Others", 0.7)
});
chart.addSeries(series);
thisPanel.add(chart); }