With the vaadin chart add-on, a new graph type is available, the Solid Gauge…
But I’m not able to remove the tooltip…
basically, I display a simple solid gauge chart which shown memory information…
every 10sec, the chart is updated. That works perfectly!
BUT I cannot disabled tooltips…
PlotOptionsSolidGauge plotOptions = new PlotOptionsSolidGauge();
Tooltip tp = new Tooltip();
tp.setEnabled(false);
plotOptions.setTooltip(tp);
but the tooltip is still availble…
I’ve tried with
PlotOptionsSolidGauge plotOptions = new PlotOptionsSolidGauge();
plotOptions.getTooltip().setEnabled(false);
but same result… Tooltips are displayed…
Is that a bug or a problem with my tooltip configuration?
P.S. And just to be sure, yes the PlotOptionsSolidGauge is set to the chart configuration!