Class StockChartConnectorModel
Interface for a class StockChartConnector
Inheritance
System.Object
StockChartConnectorModel
Implements
System.IEquatable<StockChartConnectorModel>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class StockChartConnectorModel : Object, IEquatable<StockChartConnectorModel>
Constructors
StockChartConnectorModel()
Declaration
public StockChartConnectorModel()
Properties
Color
Color of the connector line.
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DashArray
dashArray of the connector line.
Declaration
public string DashArray { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Length
Length of the connector line in pixels.
Declaration
public string Length { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Type
specifies the type of the connector line. They are Smooth Line
Declaration
public ConnectorType Type { get; set; }
Property Value
Type | Description |
---|---|
ConnectorType |
Width
Width of the connector line in pixels.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(StockChartConnectorModel)
Returns a boolean by comparing with stockChartConnectorModel
Declaration
public bool Equals(StockChartConnectorModel stockChartConnectorModel)
Parameters
Type | Name | Description |
---|---|---|
StockChartConnectorModel | stockChartConnectorModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>