Reputation: 21
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
Reputation: 95
Another option is
dataLabels: false
Documentaion: Gauge DataLabels enabled
Upvotes: 2
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