In order to display many data on the chart, I set it as "AutoScroll = true".
and each point (data) has its own different Link. URL
however, when I move scroll position, it's getting so slower (low performance).
so, In order to improve performance, I used ".NET" RenderFormat.
but Link.URL doesn't work.
what can I do?
Example :
- VS2005, ChartFX 7 Trail, WebForm
Chart1.RenderFormat = ".NET";
...
Chart1.Series[0].AxisX.AutoScroll = true;
Chart1.Series[0].AxisY.AutoScroll = true;
...
Chart1.Points[1, cnt].Link.Url = "LINK_URL";
Chart1.Points[1, cnt].Link.Target = "_blank";