Class SpreadsheetMarkerSettings
Inheritance
Namespace: Syncfusion.EJ2.Spreadsheet
Assembly: Syncfusion.EJ2.dll
Syntax
public class SpreadsheetMarkerSettings : EJTagHelper
Constructors
SpreadsheetMarkerSettings()
Declaration
public SpreadsheetMarkerSettings()
Properties
Border
Options for customizing the border of a marker.
Declaration
public SpreadsheetBorder Border { get; set; }
Property Value
Type | Description |
---|---|
SpreadsheetBorder | The default value is null |
ContentTemplate
To get or set value for ContentTemplate.
Declaration
public MvcTemplate<object> ContentTemplate { get; set; }
Property Value
Type |
---|
Syncfusion.EJ2.MvcTemplate<System.Object> |
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.
This property will work only if the isFilled
property is set to true.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
IsFilled
By default, the marker gets filled with the fill color. If set to false, the marker background will be transparent.
Declaration
public bool IsFilled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is true |
Shape
The different shape of a marker: Circle Triangle Diamond Plus None
Declaration
public ChartShape Shape { get; set; }
Property Value
Type | Description |
---|---|
ChartShape | The default value is ChartShape.Circle |
Size
The size of the marker in pixels.
Declaration
public double Size { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The default value is 5 |
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 | The default value is false |