Attaches a RadzenRangeNavigator below a RadzenChart, automatically bound to the chart's view range. Dragging the navigator window zooms the chart; zooming or panning the chart moves the navigator window. No manual binding is required. Declare RadzenRangeNavigatorLineSeries<T> children to display a data preview, or leave empty for a compact navigator.
IComponent
IHandleEvent
IHandleAfterRender
RadzenChartComponentBase.SetParametersAsync
RadzenChartComponentBase.ValidateParameters
RadzenChartComponentBase.DidParameterChange
RadzenChartComponentBase.Chart
ComponentBase.BuildRenderTree
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 RadzenChartRangeNavigator : RadzenChartComponentBase, IComponent, IHandleEvent, IHandleAfterRender<RadzenChart AllowZoom="true" AllowPan="true">
<RadzenLineSeries Data=@data CategoryProperty="Date" ValueProperty="Value" />
<RadzenChartRangeNavigator>
<RadzenRangeNavigatorLineSeries Data=@data CategoryProperty="Date" ValueProperty="Value" />
</RadzenChartRangeNavigator>
</RadzenChart>Gets or sets the child content. Used to declare RadzenRangeNavigatorLineSeries<T> preview series.
public RenderFragment ChildContent { get; set; }
| Type | Description |
|---|---|
| RenderFragment | Gets or sets the child content. Used to declare RadzenRangeNavigatorLineSeries<T> preview series. |
Gets or sets the format string used to format the handle labels.
public string HandleLabelFormatString { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the format string used to format the handle labels. |
Gets or sets the height of the navigator in pixels.
public double Height { get; set; }
| Type | Description |
|---|---|
| double | Gets or sets the height of the navigator in pixels. |
Gets or sets a value indicating whether labels with the current range values are displayed next to the drag handles.
public bool ShowHandleLabels { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether labels with the current range values are displayed next to the drag handles. |
Gets or sets a value indicating whether the navigator is displayed. Set to true by default.
public bool Visible { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether the navigator is displayed. Set to true by default. |