Seies Animation

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Fulcrum
Newbie
Newbie
Posts: 35
Joined: Fri Dec 21, 2012 12:00 am

Seies Animation

Post by Fulcrum » Fri Jun 07, 2013 11:04 am

Hello,

I have a bar chart and the idea is that begining from the bottom label it starts to growth .
I have seen the example:

Code: Select all

this.seriesAnimation1 = new Steema.TeeChart.Tools.SeriesAnimation();
this.seriesAnimation1.Series = this.barSeries1;
this.seriesAnimation1.StartAtMin = false;
this.seriesAnimation1.StartValue = 0;
this.seriesAnimation1.Steps = (int)this.hScrollBar1.Value;
this.labelSteps.Text = this.seriesAnimation1.Steps.ToString();
this.seriesAnimation1.Execute();
And tried the code but I couldnt make it work

I would apreciate the help

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Seies Animation

Post by Sandra » Mon Jun 10, 2013 8:24 am

Hello Fulcrum,

I inform you that if you work with Silverlight or WPF you must know there is a bug (TW16015981) in this point that causes the Execute() method doesn't initialize. We will try to fix it for upcoming versions of TeeChartFor.Net. On the other hand, the problem doesn't appear in WinForms.


Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Fulcrum
Newbie
Newbie
Posts: 35
Joined: Fri Dec 21, 2012 12:00 am

Re: Seies Animation

Post by Fulcrum » Tue Jun 11, 2013 11:46 am

Thanks Sandra, it Works.

Post Reply