Skip to main content
A newer version of this page is available. .

Tooltips

A tooltip is a small pop-up rectangle that displays information about a series point when a user hovers the cursor over it and indicates the point’s value by default. It is possible to display other information and customize the appearance of a tooltip or its text.

BootstrapChart-ToolTiip

You can access tooltip options using the chart’s BootstrapChartBase.SettingsToolTip property. To enable tooltips, set the BootstrapUIWidgetTooltipSettings.Enabled property to true.


<dx:BootstrapChart ID="BootstrapChart1" runat="server" ... >
    <SettingsToolTip Enabled="true"></SettingsToolTip>
    ....
</dx:BootstrapChart>
See Also