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

Definition

Constructors

C#
public ChartValueAxisPlotBand()

Methods

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

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override void Dispose(bool disposing)
Parameters:disposingbool

Overrides: DataVizChildComponent.Dispose(bool)

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()

Properties

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

Sets the background color of the plot band area on the value axis. Accepts any valid CSS color value including hex codes (#f0f8ff), RGB values (rgb(240,248,255)), or color names (aliceblue). Use this to create colored regions that highlight specific value ranges, indicate targets, thresholds, or special data zones for enhanced chart interpretation. Example: Set to "rgba(255,0,0,0.1)" for a light red warning zone, or "#e8f5e8" for a green target range indicator.

C#
[Parameter]
public string Color { get; set; }

Sets the starting value position of the plot band on the value axis. Defines where the colored band begins, using the same units and scale as your chart's value axis data. Use this to specify the lower boundary of important value ranges, thresholds, or data zones that need visual highlighting. Example: Set to 100 to start a plot band at the 100 value mark, or 0 to begin from the axis origin for baseline highlighting.

C#
[Parameter]
public object From { get; set; }

Sets the transparency level of the plot band area. Accepts values between 0 (completely transparent) and 1 (completely opaque) to control how prominently the band appears over chart data. Use this to create subtle background highlights that don't overwhelm data visualization while still providing clear zone indicators. Example: Set to 0.2 for subtle background shading, or 0.5 for more prominent zone highlighting that remains data-readable.

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

Sets the ending value position of the plot band on the value axis. Defines where the colored band ends, using the same units and scale as your chart's value axis data. Use this to specify the upper boundary of important value ranges, creating complete zones for targets, thresholds, or special data areas. Example: Set to 200 to end a plot band at the 200 value mark, creating a range when combined with the From parameter.

C#
[Parameter]
public object To { get; set; }