Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
Prevent Redraw During Resize
posted

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

Parents
No Data
Reply
  • 28496
    Offline posted

    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

Children
No Data