Articles in this section
Category / Section

How to customize the tooltip text dynamically in JavaScript Chart?

1 min read

Essential JavaScript Chart dynamically supports customizing tooltip text by using toolTipInitialize 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.

JS

<div id="container"></div>
<script type="text/javascript">
    function tooltip(sender) {
        sender.data.currentText = "Customized tooltip";
        sender.cancel = true;
    }
    $(function () {                
        $("#container").ejChart({
            toolTipInitialize: 'tooltip',
            commonSeriesOptions: {                
                type: 'line',
                dashArray: '10, 5',
                marker: {
                    visible: true,
                },
                tooltip: {
                    visible:true
                }
            }
        });
    });
</script>

The following screenshot displays the Chart with customized tooltip.

Customization of the tooltip text dynamically

Figure 1: Chart with customized Tooltip

JS Playground sample link: Tooltip text customization


Conclusion

I hope you enjoyed learning about how to customize the tooltip text dynamically in JavaScript Chart.

You can refer to our  JavaScript Chart feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our JavaScript Chart example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial
to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

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
Access denied
Access denied