Using ToolTip I am displaying data point values on a line chart. The ToolTip display was activated with the following code:
Chart1.Series("Wtr").ToolTip = "#VALY"
This works as it should but I need to perform some math on #VALY" before ToolTip displays it. Basically, I need to divide it by a fixed factor to reduce the value to a percentage (e.g. #VALY / fixed factor.) I've tried assigning #VALY to a variable but I can't get the value of #VALY.
I also tried using the ToolTip Popup event but it doesn't fire when hovering over a chart series. ToolTip Keywords might be the solution but I can't find a way to assign a fixed value to a Keyword.
I've spent several weeks researching and playing with this but haven't hit on a solution as yet. Any help would be greatly appreciated.
This is a Windows 7 / VB.Net 2012 platform.