I am able to set hyperlinks to data points using the following code from above:
for
(int
i = 0; i < chart.Series["Series1"
].Points.Count; i++)
{
chart.Series["Series1"
].Points[i].Url = "ChartDetailData.aspx?type="
+ chart.Series["Series1"
].Points[i].AxisLabel;
}
The one issue with that is that, it doesn't appear to work when I have a PieCollectedDataHelper. To resolve that issue, I was also trying to get the hyperlinks to appear in the Legend. How can I do this? The only example I could find (Interactivity and AJAX > Drill Down > Image Map Selection) uses different series not different points of the same series.