I'd like to customize tooltips one by one
I'd like to customize all my tooltips one by one. I tried using 'formatter' option but I couldn't find any option that solves my problem.
I have an array of total and current values and I need to show to the user something like '{current} of {total}'. the problem is that total and current are variable (all the series have it's own total and current value) and I couldn't format all the tooltips manually.
If I could choose tooltip options for each series It would be awesome!
Eg.:
My series is:
series = [
{
name: "Personality",
data: [25]
},
{
name: "Humor",
data: [10]
},
{
name: "Contractor",
data: [100]
}
The data was calculated using = current/total * 100
but, I can have different totals.
eg.: Personality: {current:50, total:200}; Humor:{ current:10,total:100} and Contractor:{current:95,total:95}