New to Telerik UI for BlazorStart a free 30-day trial

Configures trendline forecasting to extend trend analysis beyond the current data range for predictive visualization. Controls how far the trendline extends before and after the actual data points to provide future projections and historical trend context.

Definition

Constructors

C#
public ChartSeriesTrendlineForecast()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override void OnAfterRender(bool firstRender)
Parameters:firstRenderbool

Overrides: ComponentBase.OnAfterRender(bool)

C#
protected override void OnInitialized()

Overrides: DataVizChildComponent.OnInitialized()

C#
protected override void OnParametersSet()

Overrides: ComponentBase.OnParametersSet()

C#
public Dictionary<string, object> Serialize()
Returns:

Dictionary<string, object>

Properties

Specifies the number of intervals to extend the trendline forward after the last data point for future trend projection. Use values like 5-15 intervals to show predicted trend continuation, helping users understand potential future data patterns and trajectories.

C#
[Parameter]
public double? After { get; set; }

Specifies the number of intervals to extend the trendline backward before the first data point for historical trend context. Use values like 3-10 intervals to show how the trend would have appeared in the past, providing additional analytical context for trend analysis.

C#
[Parameter]
public double? Before { get; set; }
C#
[Parameter]
public RenderFragment ChildContent { get; set; }