A chart series that displays a filled area between two value lines in a RadzenChart. The area spans from MinProperty to MaxProperty for each category, useful for showing ranges like temperature bands or confidence intervals.
CartesianSeries<TItem>.RequireChart
CartesianSeries<TItem>.ComposeCategory
CartesianSeries<TItem>.ComposeValue
CartesianSeries<TItem>.IsValueNullable
CartesianSeries<TItem>.GetRawValueGetter
CartesianSeries<TItem>.IsNumeric
CartesianSeries<TItem>.GetCategories
CartesianSeries<TItem>.TransformCategoryScale
CartesianSeries<TItem>.RenderOverlays
CartesianSeries<TItem>.RenderTopOverlays
CartesianSeries<TItem>.Initialize
CartesianSeries<TItem>.MeasureLegend
CartesianSeries<TItem>.MeasureLegendItems
CartesianSeries<TItem>.InsidePolygon
CartesianSeries<TItem>.RenderTooltip
CartesianSeries<TItem>.RenderSharedTooltipItem
CartesianSeries<TItem>.GetTooltipPosition
CartesianSeries<TItem>.TooltipClass
CartesianSeries<TItem>.RenderLegendItem
CartesianSeries<TItem>.GetMedian
CartesianSeries<TItem>.GetMean
CartesianSeries<TItem>.GetMode
CartesianSeries<TItem>.GetTrend
CartesianSeries<TItem>.GetScaledDataPoints
CartesianSeries<TItem>.GetTitle
CartesianSeries<TItem>.TooltipLabel
CartesianSeries<TItem>.TooltipTitle
CartesianSeries<TItem>.GetDataLabels
CartesianSeries<TItem>.PickColor
CartesianSeries<TItem>.Dispose
CartesianSeries<TItem>.InvokeClick
CartesianSeries<TItem>.ValueAxisName
CartesianSeries<TItem>.ChildContent
CartesianSeries<TItem>.TooltipTemplate
CartesianSeries<TItem>.Overlays
CartesianSeries<TItem>.CoordinateSystem
CartesianSeries<TItem>.CategoryProperty
CartesianSeries<TItem>.Visible
CartesianSeries<TItem>.ShowInLegend
CartesianSeries<TItem>.ValueProperty
CartesianSeries<TItem>.RenderingOrder
CartesianSeries<TItem>.Markers
CartesianSeries<TItem>.MarkerType
CartesianSeries<TItem>.ShowActivePoint
CartesianSeries<TItem>.ShowLineInLegend
CartesianSeries<TItem>.MarkerSize
RadzenChartComponentBase.ShouldRefreshChart
RadzenChartComponentBase.ValidateParameters
RadzenChartComponentBase.DidParameterChange
RadzenChartComponentBase.Chart
ComponentBase.OnInitialized
ComponentBase.OnInitializedAsync
ComponentBase.OnParametersSet
ComponentBase.OnParametersSetAsync
ComponentBase.StateHasChanged
ComponentBase.ShouldRender
ComponentBase.OnAfterRender
ComponentBase.OnAfterRenderAsync
ComponentBase.InvokeAsync
ComponentBase.DispatchExceptionAsync
ComponentBase.RendererInfo
ComponentBase.Assets
ComponentBase.AssignedRenderMode
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public class RadzenRangeAreaSeries<TItem> : CartesianSeries<TItem>, IComponent, IHandleEvent, IHandleAfterRender, IChartSeries, IChartValueAxisSeries| Name | Description |
|---|---|
| TItem | The type of data items in the series. |
<RadzenChart>
<RadzenRangeAreaSeries Data=@data CategoryProperty="Month"
MinProperty="Low" MaxProperty="High" Title="Temperature Range" />
</RadzenChart>A chart series that displays a filled area between two value lines in a RadzenChart. The area spans from MinProperty to MaxProperty for each category, useful for showing ranges like temperature bands or confidence intervals.
public RadzenRangeAreaSeries<TItem>()Gets or sets the fill color of the area between min and max lines. When FillMode is Gradient this color is used as the gradient base color.
public string Fill { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the fill color of the area between min and max lines. When FillMode is Gradient this color is used as the gradient base color. |
Specifies how the band between the min and max lines is filled. Set to Solid by default. Use Gradient for a fill that fades from the upper boundary toward the lower one, or None to render only the boundary lines.
public FillMode FillMode { get; set; }
| Type | Description |
|---|---|
| FillMode | Specifies how the band between the min and max lines is filled. Set to Solid by default. Use Gradient for a fill that fades from the upper boundary toward the lower one, or None to render only the boundary lines. |
Specifies the opacity at the lower boundary of the gradient fill. Used when FillMode is Gradient.
public double GradientEndOpacity { get; set; }
| Type | Description |
|---|---|
| double | Specifies the opacity at the lower boundary of the gradient fill. Used when FillMode is Gradient. |
Specifies the opacity at the upper boundary of the gradient fill. Used when FillMode is Gradient.
public double GradientStartOpacity { get; set; }
| Type | Description |
|---|---|
| double | Specifies the opacity at the upper boundary of the gradient fill. Used when FillMode is Gradient. |
Specifies how to render lines between data points. Set to Line by default.
public Interpolation Interpolation { get; set; }
| Type | Description |
|---|---|
| Interpolation | Specifies how to render lines between data points. Set to Line by default. |
Gets or sets the line type for the boundary lines.
public LineType LineType { get; set; }
| Type | Description |
|---|---|
| LineType | Gets or sets the line type for the boundary lines. |
Gets or sets the name of the property that provides the maximum (upper) value.
public string MaxProperty { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the name of the property that provides the maximum (upper) value. |
Gets or sets the name of the property that provides the minimum (lower) value.
public string MinProperty { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the name of the property that provides the minimum (lower) value. |
Specifies whether to render smooth lines. Set to false by default.
public bool Smooth { get; set; }
| Type | Description |
|---|---|
| bool | Specifies whether to render smooth lines. Set to false by default. |
Gets or sets the stroke color of the upper and lower boundary lines.
public string Stroke { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the stroke color of the upper and lower boundary lines. |
Gets or sets the pixel width of the boundary lines.
public double StrokeWidth { get; set; }
| Type | Description |
|---|---|
| double | Gets or sets the pixel width of the boundary lines. |
protected override void BuildRenderTree(Rendering.RenderTreeBuilder __builder)
| Type | Name | Description |
|---|---|---|
| Rendering.RenderTreeBuilder | __builder |
public override bool Contains(double x, double y, double tolerance)
| Type | Name | Description |
|---|---|---|
| double | x | |
| double | y | |
| double | tolerance |
| Type | Description |
|---|---|
| bool |
public override RenderFragment Render(ScaleBase categoryScale, ScaleBase valueScale)
| Type | Description |
|---|---|
| RenderFragment |
public override Task SetParametersAsync(ParameterView parameters)
| Type | Name | Description |
|---|---|---|
| ParameterView | parameters |
| Type | Description |
|---|---|
| Task |
protected override string TooltipStyle(TItem item)
| Type | Name | Description |
|---|---|---|
| TItem | item |
| Type | Description |
|---|---|
| string |
protected override string TooltipValue(TItem item)
| Type | Name | Description |
|---|---|---|
| TItem | item |
| Type | Description |
|---|---|
| string |