I have a dashboard page in which I am using various MSCharts.
I have a class defined for each one of these charts, in which I am defining Tooltips of the Series in that chart like below when I run through each chart class and define its Series properties.
Series[0].ToolTip = "Date = #VALX{d}\nTotal Qty Shipped = #VALY";
The problem I'm seeing is because there are multiple charts on the page, each with its own chart area. The only chart that shows a tooltip is the first chart that has one assigned to it. The other charts don't show anything even though similar code is run for them.
Why does only the first chart show a tooltip, and how can I get around this limitation?