Chartjs-Display with Month name in the Tooltip

1👍

You should use tooltipTemplate option:

var options = {
    // String - Template string for single tooltips
    tooltipTemplate: "<%= label %> January: <%= value %>"
};

window.myLine = new Chart(ctx).Line(data, options);

Here is sample: https://jsfiddle.net/wckfhrsa/7/

Also, check more tooltip options global chart configuration

Leave a comment