Class ConnectorModel
Interface for a class Connector
Inheritance
System.Object
ConnectorModel
Implements
System.IEquatable<ConnectorModel>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ConnectorModel : Object, IEquatable<ConnectorModel>
Constructors
ConnectorModel()
Declaration
public ConnectorModel()
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(ConnectorModel)
Returns a boolean by comparing with connectorModel
Declaration
public bool Equals(ConnectorModel connectorModel)
Parameters
Type | Name | Description |
---|---|---|
ConnectorModel | connectorModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>