How can I disable the value tooltip on a Vaadin-Charts/Highcharts SolidGauge chart?

530 Views Asked by At

How can I get rid of this popup/tooltip that says "Wait Time: 3.1"?

Here is my setup code for the Data Labels and Plot options

        this.series = new ListSeries("Wait Time", 0);
        final PlotOptionsGauge plotOptions = new PlotOptionsGauge();
        plotOptions.setTooltip(null);
        series.setPlotOptions(plotOptions);
        final DataLabels dataLabels = new DataLabels();
        dataLabels.setEnabled(false);
        plotOptions.setDataLabels(dataLabels);
        configuration.setSeries(series);

There does not appear to be a setter that disables this tooltip.

enter image description here

1

There are 1 best solutions below

1
On

The answer is you have to disable it at the chart configurations not the series configurations

                final Configuration configuration = gaugeChart.getConfiguration();
                configuration.getChart().setType(ChartType.GAUGE);
                configuration.getChart().setPlotBackgroundColor(null);
                configuration.getChart().setPlotBackgroundImage(null);
                configuration.getChart().setPlotBorderWidth(0);
                configuration.getChart().setPlotShadow(false);
                configuration.setTitle("");

                /* This line removes the tooltip */
                configuration.getTooltip().setEnabled(false);