<kendo:gantt-tooltip>

The task tooltip configuration options.

Example

<kendo:gantt>
    <kendo:gantt-tooltip></kendo:gantt-tooltip>
</kendo:gantt>

Configuration Attributes

template java.lang.String

The template which renders the tooltip.The fields which can be used in the template are: task - the gantt task, for which the template is shown.

Example

<kendo:gantt-tooltip template="template">
</kendo:gantt-tooltip>

visible boolean

If set to false the gantt will not display the task tooltip. By default the task tooltip is displayed.

Example

<kendo:gantt-tooltip visible="visible">
</kendo:gantt-tooltip>

Event Attributes

template String

The template which renders the tooltip.The fields which can be used in the template are: task - the gantt task, for which the template is shown.

Example

<kendo:gantt-tooltip template="handle_template">
</kendo:gantt-tooltip>
<script>
    function handle_template(e) {
        // Code to handle the template event.
    }
</script>

Event Tags

kendo:gantt-tooltip-template

The template which renders the tooltip.The fields which can be used in the template are: task - the gantt task, for which the template is shown.

Example

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