Class MarkerSettingModel
Represents the chart marker settings.
Inheritance
System.Object
MarkerSettingModel
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class MarkerSettingModel : Object
Constructors
MarkerSettingModel()
Declaration
public MarkerSettingModel()
Properties
Border
Gets or sets the border for the marker.
Declaration
public ChartEventBorder Border { get; set; }
Property Value
Type | Description |
---|---|
ChartEventBorder | The ChartEventBorder object representing the border values for marker. |
Fill
Gets or sets the fill color for the marker.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. The default value is null. |
Height
Gets or sets the marker height.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. The default value is 5. |
Shape
Gets or sets a value that determines the shape of the marker.
Declaration
public ChartShape Shape { get; set; }
Property Value
Type | Description |
---|---|
ChartShape | One of the ChartShape enumeration that specifies how the marker is shaped. The default shape is ChartShape.Auto. |
Visible
Gets or sets the visibility for the marker.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | if |
Width
Gets or sets the marker width.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. The default value is 5. |