Class RangeNavigatorSeries
Sets and gets the options for customizing the range navigator series.
Inheritance
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class RangeNavigatorSeries : SfDataBoundComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
RangeNavigatorSeries()
Initializes a new instance of the RangeNavigatorSeries class.
Declaration
public RangeNavigatorSeries()
Properties
DashArray
Defines the pattern of dashes and gaps to stroke the lines in Line type series.
Declaration
[Parameter]
public string DashArray { get; set; }
Property Value
| Type |
|---|
| string |
DataSource
It defines the data source for a series.
Declaration
[Parameter]
public object DataSource { get; set; }
Property Value
| Type |
|---|
| object |
Fill
The fill color for the series that accepts value in hex and rgba as a valid CSS color string. It also represents the color of the signal lines in technical indicators. For technical indicators, the default value is 'blue' and for series, it has null.
Declaration
[Parameter]
public string Fill { get; set; }
Property Value
| Type |
|---|
| string |
Opacity
The opacity for the background.
Declaration
[Parameter]
public double Opacity { get; set; }
Property Value
| Type |
|---|
| double |
Query
It defines the query for the data source.
Declaration
[Parameter]
public Query Query { get; set; }
Property Value
| Type |
|---|
| Query |
Type
It defines the series type of the range navigator.
Declaration
[Parameter]
public RangeNavigatorType Type { get; set; }
Property Value
| Type |
|---|
| RangeNavigatorType |
Width
The stroke width for the series that is applicable only for Line type series.
It also represents the stroke width of the signal lines in technical indicators.
Declaration
[Parameter]
public double Width { get; set; }
Property Value
| Type |
|---|
| double |
XName
It defines the xName for the series.
Declaration
[Parameter]
public string XName { get; set; }
Property Value
| Type |
|---|
| string |
YName
It defines the yName for the series.
Declaration
[Parameter]
public string YName { get; set; }
Property Value
| Type |
|---|
| string |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
| Type | Name | Description |
|---|---|---|
| RenderTreeBuilder | __builder |