Reputation: 33
I want to remove an option in the tooltip, I dont know if its possible I have a function that set parameters of all my charts. I think I need to put it here:
Highcharts.setOptions({
lang: {
numericSymbols: null
},
tooltip: {
valueDecimals: 2
}
}
});
I want to remove the part of the tooltip shown as 0 here.
Thanks
Upvotes: 1
Views: 47
Reputation: 5803
Remove the header text from your tooltip like this:
Highcharts.setOptions({
tooltip: {
headerFormat: null,
...
},
...
});
API on headerFormat: https://api.highcharts.com/highcharts/tooltip.headerFormat
Upvotes: 1