SankeyTagHelper
Example
Razor
<kendo-sankey>
<data></data>
<labels></labels>
<legend></legend>
<links></links>
<messages />
<nodes></nodes>
<title />
<tooltip></tooltip>
</kendo-sankey>
ChildTags
| Tag Name | Details |
|---|---|
| data | SankeyDataSettingsTagHelper |
| labels | SankeyLabelsSettingsTagHelper |
| legend | SankeyLegendSettingsTagHelper |
| links | SankeyLinksSettingsTagHelper |
| messages | SankeyMessagesSettingsTagHelper |
| nodes | SankeyNodesSettingsTagHelper |
| title | SankeyTitleSettingsTagHelper |
| tooltip | SankeyTooltipSettingsTagHelper |
Attributes
| Attribute | Type | Description |
|---|---|---|
| name | String | Sets the name of the component. |
| disable-auto-layout | Boolean | If set to true, the Sankey will not automatically reorder the nodes to reduce the number of links that cross over each other. |
| disable-keyboard-navigation | Boolean | If set to true, the Sankey keyboard navigation will be disabled. |
| on-link-click | String | The name of the JavaScript function that will handle the linkClick event. Fires when the user clicks a link. |
| on-link-enter | String | The name of the JavaScript function that will handle the linkEnter event. Fires when the user enters a link. Similar to the mouseenter event. |
| on-link-leave | String | The name of the JavaScript function that will handle the linkLeave event. Fires when the user leaves a link. Similar to the mouseleave event. |
| on-node-click | String | The name of the JavaScript function that will handle the nodeClick event. Fires when the user clicks a node. |
| on-node-enter | String | The name of the JavaScript function that will handle the nodeEnter event. Fires when the user enters a node. Similar to the mouseenter event. |
| on-node-leave | String | The name of the JavaScript function that will handle the nodeLeave event. Fires when the user leaves a node. Similar to the mouseleave event. |
| script-attributes | IDictionary<String,Object> | Sets the attributes that will be added to the script tag of the component's initialization script. |
| theme | String | The theme configuration options. |
| is-in-client-template | Boolean | When placing a Tag Helper within a Kendo Template, set the type to text/html and add the is-in-client-template="true" attribute. |
| deferred | Boolean | Suppress initialization script rendering. Note that this options should be used in conjunction with DeferredScripts method. |
| as-module | Boolean | Specifies whether the initialization script of the component will be rendered as a JavaScript module. |