Articles in this section
Category / Section

How to customize the tooltip text dynamically?

1 min read

Essential Chart dynamically supports customizing tooltip text by using OnClientToolTipInitialize event. Refer to Chart Events for more information about the events available in Chart and also refer to ToolTipInitialize event for more information about the parameters available in the event handler.

This event is triggered before displaying the tooltip and provides a parameter containing properties cancel, data, model and type to the event handler. You can customize tooltip text with currentText property available in the data property of the event handler argument.

ASP

<ej:Chart ID="container" OnClientToolTipInitialize="tooltip" runat="server">         
       <CommonSeriesOptions DashArray="5,5" type="Line">
           <Marker Visible="true"></Marker>
           <Tooltip Visible="true"></Tooltip>
       </CommonSeriesOptions>
</ej:Chart>
<script type="text/javascript">
    function tooltip(sender) {
        sender.data.currentText = "Customized tooltip";
        sender.cancel = true;
    }    
</script>

The following screenshot displays the Chart with customized tooltip.

Customized the tooltip text dynamically

Figure 1: Chart with customized Tooltip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment