ClassChartValueAxisPlotBand
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class ChartValueAxisPlotBand : DataVizCollectionItemComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseDataVizChildComponentDataVizCollectionItemComponentChartValueAxisPlotBand
Implements:
Inherited Members
Constructors
ChartValueAxisPlotBand()
Declaration
public ChartValueAxisPlotBand()
Properties
ChildContent
Declaration
[Parameter]
public RenderFragment ChildContent { get; set; }
Property Value
Color
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.
From
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.
Opacity
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.
Declaration
[Parameter]
public double? Opacity { get; set; }
Property Value
To
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.
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
Dispose(bool)
Declaration
protected override void Dispose(bool disposing)
Parameters
disposing
Overrides
OnAfterRender(bool)
Declaration
protected override void OnAfterRender(bool firstRender)
Parameters
firstRender
Overrides
OnInitialized()
Declaration
protected override void OnInitialized()
Overrides
OnParametersSet()
Declaration
protected override void OnParametersSet()
Overrides