I wish to have a graph similar to this chart. I'm able achieve it partially, but I'm not able to get that centre count part. How to achieve the same? Do I need to use SOLIDGAUGE or PIE as ChartType?
Currently I'm using ChartType as PIE. And to achieve the hollow part in centre, I'm writing below code. what I've achieved
PlotOptionsPie plotOptions=new PlotOptionsPie();
plotOptions.setInnerSize("50%");
configuration.setPlotOptions(plotOptions);
But now how to put that count (985 as in image) in centre? I tried using DataLabels but its not working.
Note: I'm using Vaadin Charts 3.2.1, Vaadin 7 and Java 8