Class SankeyLinkBuilder
Inheritance
System.Object
Syncfusion.EJ2.ControlBuilder
SankeyLinkBuilder
Assembly: Syncfusion.EJ2.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
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
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
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