Renders a filled area with a line stroke inside a RadzenRangeNavigator.
Object
ComponentBase
ComponentBase.OnInitialized
ComponentBase.OnInitializedAsync
ComponentBase.OnParametersSetAsync
ComponentBase.StateHasChanged
ComponentBase.ShouldRender
ComponentBase.OnAfterRender
ComponentBase.OnAfterRenderAsync
ComponentBase.InvokeAsync
ComponentBase.DispatchExceptionAsync
ComponentBase.SetParametersAsync
ComponentBase.RendererInfo
ComponentBase.Assets
ComponentBase.AssignedRenderMode
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public class RadzenRangeNavigatorLineSeries<TItem> : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IRangeNavigatorSeries| Name | Description |
|---|---|
| TItem | The type of the data items. |
Gets or sets the name of the property that provides the category (X axis) values.
public string CategoryProperty { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the name of the property that provides the category (X axis) values. |
Gets or sets the data source.
public IEnumerable<TItem> Data { get; set; }
| Type | Description |
|---|---|
| IEnumerable<TItem> | Gets or sets the data source. |
Gets or sets the area fill color.
public string Fill { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the area fill color. |
Specifies how the area below the line is filled. Set to Solid by default.
public FillMode FillMode { get; set; }
| Type | Description |
|---|---|
| FillMode | Specifies how the area below the line is filled. Set to Solid by default. |
Gets or sets the fill opacity. When FillMode is Gradient this is the opacity at the top of the gradient.
public double FillOpacity { get; set; }
| Type | Description |
|---|---|
| double | Gets or sets the fill opacity. When FillMode is Gradient this is the opacity at the top of the gradient. |
Gets or sets whether to use smooth (spline) interpolation.
public bool Smooth { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets whether to use smooth (spline) interpolation. |
Gets or sets the stroke (line) color.
public string Stroke { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the stroke (line) color. |
Gets or sets the stroke width.
public double StrokeWidth { get; set; }
| Type | Description |
|---|---|
| double | Gets or sets the stroke width. |
Gets or sets the name of the property that provides the value (Y axis) values.
public string ValueProperty { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the name of the property that provides the value (Y axis) values. |
protected override void BuildRenderTree(Rendering.RenderTreeBuilder __builder)
| Type | Name | Description |
|---|---|---|
| Rendering.RenderTreeBuilder | __builder |
public RenderFragment Render(ScaleBase categoryScale, ScaleBase valueScale)
| Type | Description |
|---|---|
| RenderFragment |