I have a Highchart basic bar graph that I want to edit the tooltip for.
Basically as it stands when I hover over the bars it gives me the percentage values that I coded in (in the seriesData)
What I want is to be able to use a Count as well. I've seen the
.SetToolTip(new Tooltip {
Shared = true,
Formatter = @"function() { return this.whatever; }
}
possibly used to this effect, but I don't know what this refers to, or how to plug in my own variables from C# code.