Jump to content
Software FX Community

imbumi

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by imbumi

  1. In order to display many data on the chart, I set it as "AutoScroll = true".and each point (data) has its own different Link. URLhowever, 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";

  2. I have to set "AutoScroll = true" in Chart for displaying many data

    And each point(data) has different Link.URL

    but It shows low performance when user move scroll position.

    In order to Improve performance, I use ".NET" RenderFormat.

    But It doesn't run Link.URL on ".NET" RenderFormat.

    How do i solve it?

     

    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";

×
×
  • Create New...