Class LineSettingsModel
Interface for a class LineSettings
Inheritance
System.Object
LineSettingsModel
Implements
System.IEquatable<LineSettingsModel>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class LineSettingsModel : Object, IEquatable<LineSettingsModel>
Constructors
LineSettingsModel()
Declaration
public LineSettingsModel()
Properties
Color
To configure the sparkline axis line color.
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DashArray
To configure the sparkline axis line dashArray.
Declaration
public string DashArray { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Opacity
To configure the sparkline axis line opacity.
Declaration
public double Opacity { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Visible
To toggle the axis line visibility.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Width
To configure the sparkline axis line width.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(LineSettingsModel)
Returns a boolean by comparing with lineSettingsModel
Declaration
public bool Equals(LineSettingsModel lineSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
LineSettingsModel | lineSettingsModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>