Class MarkerSettingsModel
Interface for a class MarkerSettings
Inheritance
Implements
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class MarkerSettingsModel : Object, IEquatable<MarkerSettingsModel>
Constructors
MarkerSettingsModel()
Declaration
public MarkerSettingsModel()
Properties
Border
Options for customizing the border of a marker.
Declaration
public BorderModel Border { get; set; }
Property Value
Type | Description |
---|---|
BorderModel |
DataLabel
The data label for the series.
Declaration
public DataLabelSettingsModel DataLabel { get; set; }
Property Value
Type | Description |
---|---|
DataLabelSettingsModel |
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
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Height
The height of the marker in pixels.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.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
public string ImageUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Offset
Options for customizing the marker position.
Declaration
public OffsetModel Offset { get; set; }
Property Value
Type | Description |
---|---|
OffsetModel |
Opacity
The opacity of the marker.
Declaration
public double Opacity { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Shape
The different shape of a marker: Circle Rectangle Triangle Diamond HorizontalLine VerticalLine Pentagon InvertedTriangle Image
Declaration
public ChartShape Shape { get; set; }
Property Value
Type | Description |
---|---|
ChartShape |
Visible
If set to true the marker for series is rendered. This is applicable only for line and area type series.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Width
The width of the marker in pixels.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(MarkerSettingsModel)
Returns a boolean by comparing with markerSettingsModel
Declaration
public bool Equals(MarkerSettingsModel markerSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
MarkerSettingsModel | markerSettingsModel |
Returns
Type | Description |
---|---|
System.Boolean |