<kendo:sankey-tooltip>

The tooltip configuration options.

Example

<kendo:sankey>
    <kendo:sankey-tooltip></kendo:sankey-tooltip>
</kendo:sankey>

Configuration Attributes

appendTo java.lang.String

The element to which the tooltip will be appended.

Example

<kendo:sankey-tooltip appendTo="appendTo">
</kendo:sankey-tooltip>

delay float

The delay in milliseconds before the tooltip is displayed.

Example

<kendo:sankey-tooltip delay="delay">
</kendo:sankey-tooltip>

followPointer boolean

If set to true, the tooltip will follow the mouse pointer.

Example

<kendo:sankey-tooltip followPointer="followPointer">
</kendo:sankey-tooltip>

linkTemplate java.lang.String

The template which renders the tooltip content for the links.

Example

<kendo:sankey-tooltip linkTemplate="linkTemplate">
</kendo:sankey-tooltip>

nodeTemplate java.lang.String

The template which renders the tooltip content for the nodes.

Example

<kendo:sankey-tooltip nodeTemplate="nodeTemplate">
</kendo:sankey-tooltip>

offset float

The distance between the tooltip and the mouse pointer in pixels.

Example

<kendo:sankey-tooltip offset="offset">
</kendo:sankey-tooltip>

Event Attributes

linkTemplate String

The template which renders the tooltip content for the links.

Example

<kendo:sankey-tooltip linkTemplate="handle_linkTemplate">
</kendo:sankey-tooltip>
<script>
    function handle_linkTemplate(e) {
        // Code to handle the linkTemplate event.
    }
</script>

nodeTemplate String

The template which renders the tooltip content for the nodes.

Example

<kendo:sankey-tooltip nodeTemplate="handle_nodeTemplate">
</kendo:sankey-tooltip>
<script>
    function handle_nodeTemplate(e) {
        // Code to handle the nodeTemplate event.
    }
</script>

Event Tags

kendo:sankey-tooltip-linkTemplate

The template which renders the tooltip content for the links.

Example

<kendo:sankey-tooltip>
    <kendo:sankey-tooltip-linkTemplate>
        <script>
            function(e) {
                // Code to handle the linkTemplate event.
            }
        </script>
    </kendo:sankey-tooltip-linkTemplate>
</kendo:sankey-tooltip>

kendo:sankey-tooltip-nodeTemplate

The template which renders the tooltip content for the nodes.

Example

<kendo:sankey-tooltip>
    <kendo:sankey-tooltip-nodeTemplate>
        <script>
            function(e) {
                // Code to handle the nodeTemplate event.
            }
        </script>
    </kendo:sankey-tooltip-nodeTemplate>
</kendo:sankey-tooltip>
In this article
Not finding the help you need?