ISeriesAnimationTool.StartAtMin
ISeriesAnimationTool

property StartAtMin: WordBool;

Type Library
TeeChartx

Description
Default : True

The animation starts changing all series point values to the lowest series value.

Setting StartAtMin to False, and setting the StartValue property, makes the animation to start at that value.

Example [Visual Basic]:

With TChart1.Tools.Items(1).asSeriesAnimation

.StartValue = 0

.StartAtMin = False

End With