I need to run an animation soon after the chart is completely rendered in the screen. How can I fire an event soon after the data-series is completely drawn in the screen?

After setting data in data-series chart takes longer time to render. So I need an event. Is there any way to do it?

     for (Int32 j = 0; j < 1; j++)
     {   
         var dataSeries = new DataSeries<DateTime, double>();

         for (Int32 i = 0; i < 10000; i++)
         {
            dataSeries.Add(new DataPoint<DateTime, double>(DateTime.Today.AddDays(i), rnd.NextDouble() * 20));
         }

            chart.Series[0].DataSeries = dataSeries;
     }
link|improve this question

43% accept rate
Did you ever find a solution to this? – Chris Grant Jan 31 at 16:07
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.