Class StockChartSeriesMarker
To specify customization options for stock chart series marker.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class StockChartSeriesMarker : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
StockChartSeriesMarker()
Declaration
public StockChartSeriesMarker()
Properties
Fill
The fill color of the marker that accepts value in hex and rgba as a valid CSS color string. By default, it will take series' color.
Declaration
[Parameter]
public string Fill { get; set; }
Property Value
| Type |
|---|
| string |
Height
The height of the marker in pixels.
Declaration
[Parameter]
public double Height { get; set; }
Property Value
| Type |
|---|
| double |
ImageUrl
The URL for the Image that is to be displayed as a marker. It requires marker Shape value to be an Image.
Declaration
[Parameter]
public string ImageUrl { get; set; }
Property Value
| Type |
|---|
| string |
Opacity
The opacity of the marker.
Declaration
[Parameter]
public double Opacity { get; set; }
Property Value
| Type |
|---|
| double |
Shape
The different shape of a marker: Circle Rectangle Triangle Diamond HorizontalLine VerticalLine Pentagon InvertedTriangle Image.
Declaration
[Parameter]
public ChartShape Shape { get; set; }
Property Value
| Type |
|---|
| ChartShape |
Visible
If set to true the marker for series is rendered. This is applicable only for line and area type series.
Declaration
[Parameter]
public bool Visible { get; set; }
Property Value
| Type |
|---|
| bool |
Width
The width of the marker in pixels.
Declaration
[Parameter]
public double Width { get; set; }
Property Value
| Type |
|---|
| double |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
| Type | Name | Description |
|---|---|---|
| RenderTreeBuilder | __builder |