TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
-
Fulcrum
- Newbie
- Posts: 35
- Joined: Fri Dec 21, 2012 12:00 am
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
- Posts: 3132
- Joined: Fri Nov 07, 2008 12:00 am
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,
-
Fulcrum
- Newbie
- Posts: 35
- Joined: Fri Dec 21, 2012 12:00 am
Post
by Fulcrum » Tue Jun 11, 2013 11:46 am
Thanks Sandra, it Works.