Page 1 of 1

Seies Animation

Posted: Fri Jun 07, 2013 11:04 am
by 15664465
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

Re: Seies Animation

Posted: Mon Jun 10, 2013 8:24 am
by 10050769
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,

Re: Seies Animation

Posted: Tue Jun 11, 2013 11:46 am
by 15664465
Thanks Sandra, it Works.