Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Highcharts Gauge: Labels radius styling

In my browser (Firefox 12), this example of a Highcharts Chart looks not correct. The labels are not styled in the same radius as the background radius is.

Is there any option in Highcharts to fix this?

Thx in advance.

like image 964
CSan Avatar asked Dec 19 '25 05:12

CSan


1 Answers

Yes, there are options on the label that will fix this. If you format the label according to the below code the label should arc properly around the gauge.

labels: {
    step: 2,
        rotation: 'auto',
        align: 'center',
        distance: 15,
        x: 0,
        y: 0
},

I updated your jsfiddle to demonstrate. You were missing the x and y position offsets.

like image 176
Linger Avatar answered Dec 21 '25 19:12

Linger