Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the value and number labels from Highcharts angular gauge

Tags:

highcharts

I'd like to remove the value box from a Highcharts angular gauge.

I'm not sure it is possible...I have tried messing around with the JSFiddle demo trying to remove it and haven't been able to.

I was able to remove the minor and major ticks by adding

minorTickInterval: 'none',
tickPixelInterval: 'none'

But I can't figure out how to remove the value from the middle of the gauge.

enter image description here

like image 903
Paul Avatar asked Sep 05 '25 17:09

Paul


1 Answers

or you can achieve the result you want just by adding the following lines:

series: [{
    dataLabels: {
         enabled: false
    }
}]
like image 104
Emanuel Freitas Avatar answered Sep 07 '25 18:09

Emanuel Freitas