user2067591
user2067591

Reputation: 21

Gauge central value don't show

I only want to know if it's possible delete, or don't show, the frame in the middle of Gauge Chart that contains the value (below pivot). I got more than one serie and values ​​overlap each other.

Thanks!!

Upvotes: 1

Views: 1705

Answers (2)

thomasb
thomasb

Reputation: 95

Another option is

dataLabels: false

Documentaion: Gauge DataLabels enabled

Upvotes: 2

Gopinagh.R
Gopinagh.R

Reputation: 4916

One way is, you can format your datalabels and return nothing in the formatter () function.

 dataLabels: {
     formatter: function () {
     var kmh = this.y,
     mph = Math.round(kmh * 0.621);                
     }
 }

Fiddled version. (tweaked from Highchart demo sample )

Hope this is you need.

Upvotes: 2

Related Questions