We are working on a project which is being developed in Silverlight and we are using TeeChart For Dot Net 2010. In this we have different charts and we are trying to create animation effect in some series. But somehow while we are using SerieAanimation tool it does not affect anything. We are using following code to do so:
Code: Select all
SeriesAnimation seriesAnimation1 = new SeriesAnimation();
Mychart.Tools.Add(seriesAnimation1);
seriesAnimation1.Active = true;
seriesAnimation1.Series = myPie; //any pie chart
seriesAnimation1.StartAtMin = false;
seriesAnimation1.StartValue = 0;
seriesAnimation1.Steps = 500;
seriesAnimation1..Execute();
Any suggestion will be highly appreciated.
Thanks & Regards
Planoresearch