On the HighCharts web site, I see there is a BoxPlot:
chart: {
type: 'boxplot'
},
However there is no reference to BoxPlot in the GWT HighCharts documentation or forum. Is this supported? There is no Series.Type.BoxPlot.
Can this be done through JNSI?
Thanks!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
GWT Highcharts hasn't yet added wrapper methods for the new capabilities coming in the Highcharts 3.0 release. However, you should still be able to use most of those capabilities just by using GWT Highcharts' "setOption()" method. E.g.
Chart chart = new Chart()
.setOption("type", "boxplot");
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
On the HighCharts web site, I see there is a BoxPlot:
chart: {
type: 'boxplot'
},
However there is no reference to BoxPlot in the GWT HighCharts documentation or forum. Is this supported? There is no Series.Type.BoxPlot.
Can this be done through JNSI?
Thanks!
GWT Highcharts hasn't yet added wrapper methods for the new capabilities coming in the Highcharts 3.0 release. However, you should still be able to use most of those capabilities just by using GWT Highcharts' "setOption()" method. E.g.