Need to add HTML tags in default tooltip
in label callback function
tooltips: {
callbacks: {
label: function(tooltipItem, data) {
return "<h1>Daily Ticket Sales</h1> </br> $" + tooltipItem.yLabel;
},
}
}
Need to add HTML tags in default tooltip
in label callback function
tooltips: {
callbacks: {
label: function(tooltipItem, data) {
return "<h1>Daily Ticket Sales</h1> </br> $" + tooltipItem.yLabel;
},
}
}
Copyright © 2021 Jogjafile Inc.
What I can see that you want to give some style or to increase the font size of 'Daily Ticket Sales'. One thing that you can do is to put the title in the title callback and change the style for the title through tooltip properties.
[Sample-Code]
Now you see I set the title font size to 24. So that, it will start giving look of h1. Below are the properties that you set for the tooltip title.