BackwardForecastLength: Double;
The BackwardForecastLength property determines the forecast length of a backward value series.
This example assumes that there is the Chart object of the IChart type.
Sub TrendLine;
Var
Chart: IChart;
Begin
Chart.Series.Item(0).TrendLines.Item(0).BackwardForecastLength := 3;
End Sub TrendLine;
After executing the example the line of the specified series trend is extended by three points backwards.
See also: