Reputation: 87
I have 2 series in my charts
There is a shared tooltip which shows data for both series. In the tooltip I want to also show (actualImpression/bookedImpression) as a percentage. Below is what I want to achieve. (This just shows my intent, not actual code)
Formatter = function(){
return '<b>'+ 'Total' +'</b><br/>'+': '
+ if (this.series['Booked Impresssions'].Point.y !=0 )
{this.series['Actual Impresssions'].Point.y/ this.series['Booked Impresssions'].Point.y +'%';}
else {'-';}
}
Thanks
Upvotes: 0
Views: 627