Seies Animation
Posted: 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:
And tried the code but I couldnt make it work
I would apreciate the help
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();
I would apreciate the help