Skip to content

Latest commit

 

History

History
152 lines (116 loc) · 4.09 KB

File metadata and controls

152 lines (116 loc) · 4.09 KB
title page_title description slug
Tooltip
Tooltip
Learn how to configure the tooltip in Telerik UI Charts, make it visible, and set its properties depending on your preferences.
htmlhelpers_charts_tooltip_aspnetcore

{% if site.core %} {% assign TemplateId = "/api/Kendo.Mvc.UI.Fluent/ChartAxisDefaultsCrosshairTooltipSettingsBuilder#templateidsystemstring" %} {% else %} {% assign TemplateId = "/api/Kendo.Mvc.UI.Fluent/ChartAxisCrosshairTooltipBuilder#templatesystemstring" %} {% endif %}

Tooltip

The Telerik UI Chart enables you to display details about the data point over which the mouse is currently hovering.

The border of this tooltip matches the color of the series.

{{ site.product_short }} The Chart tooltip

Getting Started

By default, the tooltip of the Chart is not visible. You can enable it by setting the visible property of the tooltip object to true.

    @(Html.Kendo().Chart()
        .Name("chart")
        .Series(s => s
            .Bar(new double[] { 67.96, 68.93, 75, 74, 78 })
        )
        .CategoryAxis(c => c
            .Categories(new string[] { "2005", "2006", "2007", "2008", "2009" })
        )
        .Tooltip(t => t.Visible(true))
    )

{% if site.core %}


    @{
        var categories = new string[] { "2005", "2006", "2007", "2008", "2009" };
    }

    <kendo-chart name="chart">
        <category-axis>
            <category-axis-item categories="categories">
            </category-axis-item>
        </category-axis>
        <tooltip visible="true"></tooltip>
        <!-- Other options.-->
    </kendo-chart>

{% endif %}

The tooltip can also be configured per series.

    .Series(s => s
        .Bar(new double[] { 67.96, 68.93, 75, 74, 78 })
        .Tooltip(t=>t.Visible(true))
    )

{% if site.core %}


    @{
        var series_data = new double[] { 67.96, 68.93, 75, 74, 78 };
    }

    <series>
        <series-item type="ChartSeriesType.Bar" data="series_data">
            <tooltip visible="true"/>
        </series-item>
    </series>

{% endif %}

Using Format Values

To format the point value, use the Format property. In the following example, N0 indicates that the value will be rounded to a whole number and will have a thousands separator.

Points in categorical (XY) Charts have two values—{0} and {1} (X and Y).

    .Tooltip(t => t
        .Visible(true)
        .Format("Value: {0:N0}")
    )

{% if site.core %}


    <tooltip visible="true" format="Value: {0:N0}"></tooltip>

{% endif %}

Using Templates

To provide better flexibility, define the content of a tooltip through a template.

The template provides access to all information associated with the point:

  • value—The point value. Value dimensions are available as properties, for example, value.x and value.y.
  • category—The category name.
  • series—The data series.
  • (When binding to a data source) dataItem—The original data item.
    .Tooltip(t => t
        .Visible(true)
        .Template("Value: #= value # ; Category: #= category #")
    )

{% if site.core %}


    <tooltip visible="true" template="Value: #= value # ; Category: #= category #"></tooltip>

{% endif %}

You can also use an external template by specifying [TemplateId]({{ TemplateId }}).

    .Tooltip(t => t
        .Visible(true)
        .TemplateId("tooltipTemplate")
    )

{% if site.core %}


    <tooltip visible="true" template-id="tooltipTemplate"></tooltip>

{% endif %}

    <script id="tooltipTemplate" type="text/x-kendo-template">
        Value: #= value # ; Category: #= category #
    </script>

See Also