I have to use pointFormat
property to format the tooltips. The problem with this is that I can not figure out a way to use {point.y}
(0.0324123) and make it format to a precent (3.24).
As i said above, I have to do this in tooltip.pointFormat
. My current code looks like this
$highcharts[$key]['tooltip'] = [
'pointFormat' => '<p style="margin:0;"><span style="color:{series.color};">{series.name}</span>: <b>{point.y:,.2f}%</b></p>'
];
Is there a way to do {point.y:,.2f} * 100
within the html/HighCharts syntax?
Any help is appreciated.