Class SankeyLinkBuilder
Inheritance
System.Object
Syncfusion.EJ2.ControlBuilder
SankeyLinkBuilder
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.EJ2.Charts
Assembly: Syncfusion.AspNetMvc.Sankey.dll
Syntax
public class SankeyLinkBuilder : ControlBuilder
Constructors
SankeyLinkBuilder()
Declaration
public SankeyLinkBuilder()
SankeyLinkBuilder(List<SankeyLink>)
Declaration
public SankeyLinkBuilder(List<SankeyLink> collection)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.List<SankeyLink> | collection |
Methods
Add()
Declaration
public void Add()
SourceId(String)
Specifies the unique identifier of the source node for this
link.
This should match the id of an existing Sankey node.
Declaration
public SankeyLinkBuilder SourceId(string sourceId)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | sourceId |
Returns
| Type |
|---|
| SankeyLinkBuilder |
TargetId(String)
Specifies the unique identifier of the target node for this link.
This should match the id of an existing Sankey node.
Declaration
public SankeyLinkBuilder TargetId(string targetId)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | targetId |
Returns
| Type |
|---|
| SankeyLinkBuilder |
Value(Double)
Defines the weight or value of the link. This determines the thickness of the link in the Sankey diagram.
Declaration
public SankeyLinkBuilder Value(double value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Double | value |
Returns
| Type |
|---|
| SankeyLinkBuilder |