Jump to content
Software FX Community

Zoom is slow


wuttrain

Recommended Posts

Hi,

 I am evaluating Chart FX for Visual Studio 2008 / WinForms and I noticed that when I load 50,000 rows (with 3 series) and tried to zoom it takes 3 to 7 seconds before the zoom box to appear when I try to click and drag the mouse.  This is the case when the chart is displaying the whole data.

When I load just around 5,000 rows with the same number of series, zooming works fine.

I'm on Win XP 32 SP2

 Is this is a possible issue if I decide to buy this product?

 Thanks!

 wuttrain

Link to comment
Share on other sites

I think the delay is caused by either the tooltip or the highlighting. With such a large number of points (dependin g on your chart settings such as marker shape, etc) it is generally a good idea to dissable tooltips and highlighting as it is not very usefull anyways (is hard to hover over a specific point when there are so many of them).

Try setting:

chart.Highlight.Enabled = false;

chart.ToolTips = false;

Link to comment
Share on other sites

Thank you for your response. 

After adding the 2 lines you suggested, I can see the difference of the delay, but there is still delay which I can live with. After zooming the chart, is there a way I can enable the tooltips property again from the mouse events?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...