Class ChartMarkerBorder
Provides the options to customize the border of a chart marker.
Implements
System.IAsyncDisposable
Namespace: Syncfusion.Blazor.Toolkit.Charts
Assembly: Syncfusion.Blazor.Toolkit.dll
Syntax
public class ChartMarkerBorder : ChartDefaultBorder, IAsyncDisposable, ISubcomponentTracker
Remarks
Use this subcomponent inside ChartMarker to adjust marker border color and width.
Constructors
ChartMarkerBorder()
Declaration
public ChartMarkerBorder()
Properties
Width
Gets or sets the width of the marker border.
Declaration
public override double Width { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Double | A System.Double representing the width of the border surrounding the chart marker. The default value is 2. |
Overrides
Remarks
Controls the thickness of the marker border.
Examples
<ChartMarker Visible="true">
<ChartMarkerBorder Color="red" Width="2"></ChartMarkerBorder>
</ChartMarker>
Implements
System.IAsyncDisposable