ITeeFunction.asMovAvg
ITeeFunction
property asMovAvg: IMovingAvgFunction;
Type Library
TeeChartx
Description
The asMovAvg property is used by the Teefunction Class to access Moving Average Function specific properties. See Typecasting for a detailed explanation of access to Series and Function specific properties.
Example [Visual Basic]:
With TChart1.Series( 0 ).FunctionType
.Period = 5
.asMovAvg.Weighted = true
end with