Greetings,
I am trying to figure out how to prevent the chart from trying to redraw when the user is resizing the form. I have many data points and the redraw isn't fast enough to keep up with the mouse.
I'd like to just redraw once when the user stops dragging the window resize.
Thanks,
-Mike Graham
this isn't available as a feature of the chart. the only way i can think of doing it is like this:
- add a timer to your window with an interval of 3 seconds
- in the window's sizechanged event, start the timer and hide the chart
- in the timer's tick event, stop the timer and show the chart