<kendo:sankey-data-link>
The links of the Sankey. The links are the connections between the nodes. Each link has a sourceId and targetId that correspond to the id of the source and target nodes, and a value that represents the value of the link.
Example
<kendo:sankey-data-links>
<kendo:sankey-data-link></kendo:sankey-data-link>
</kendo:sankey-data-links>
Configuration Attributes
color java.lang.String
The color of the link. The color is used when the colorType option is set to static. Accepts a valid CSS color string, including hex and rgb.
Example
<kendo:sankey-data-link color="color">
</kendo:sankey-data-link>
colorType java.lang.String
Defines the color type of the link.
Example
<kendo:sankey-data-link colorType="colorType">
</kendo:sankey-data-link>
opacity float
The opacity of the links.
Example
<kendo:sankey-data-link opacity="opacity">
</kendo:sankey-data-link>
sourceId java.lang.Object
The source node ID of the link. The source node is the node from which the link originates.
Example
<kendo:sankey-data-link sourceId="sourceId">
</kendo:sankey-data-link>
targetId java.lang.Object
The target node ID of the link. The target node is the node to which the link points.
Example
<kendo:sankey-data-link targetId="targetId">
</kendo:sankey-data-link>
value float
The value of the link. The value represents the weight of the link and determines the width of the link.
Example
<kendo:sankey-data-link value="value">
</kendo:sankey-data-link>
Configuration JSP Tags
kendo:sankey-data-link-highlight
The link highlight configuration options.
More documentation is available at kendo:sankey-data-link-highlight.
Example
<kendo:sankey-data-link>
<kendo:sankey-data-link-highlight></kendo:sankey-data-link-highlight>
</kendo:sankey-data-link>