I'm wondering is there any way to change valueSuffix of tooltip after chart is rendered?
I'm trying to do switch from metric units to imperial, so I need to change data, yAxis label and tooltip valueSuffix. It was simple for first two, but I didn't find anything about third, neither in docs (like yAxis update(..)), neither in google.
Tried this:
$('#sp_chart').highcharts().tooltip.options.valueSuffix = 'aaaa';
in
console.log($('#sp_chart').highcharts().tooltip.options.valueSuffix)
it looks good, but didn't works when tooltip shows.