Hi community \o Can someone help me figure out why my images are not showing?
As you can imagine... It works fine on my machine hahah but can't find out what's going on.
Thanks
Hi community \o Can someone help me figure out why my images are not showing?
As you can imagine... It works fine on my machine hahah but can't find out what's going on.
Thanks
I wasn't able to customize the text content of the tooltip :( Also I couldn't get it to show above the bar.
Hi,
In your chart's configuration, there is a section for plugins
where you can modify the tooltip. Check out the docs to see what options the tooltip contains and what can be modified. To give you a headstart, I'll show you an option or two off the top of my head that can be changed.
plugins: {
tooltip: {
displayColors: false, // this value removes the colored box next to your value
callbacks: {
title: function () { return '' }, // we don't need a title, only the label
label: function () {
// put code here to render the label's desired value
return ""
}
}
}
There's more I'd look into (hint: the caret probably isn't needed) to style it closer to the design spec. You may also want to look into the layout
property to see how to get the tooltip to appear above the chart. You can check that out here.
UPDATED Solution: 05/16/2023
Order Summary Component 🎉
Any feedbacks or questions are appreciated though! 😁 Feel free to start a thread or a discussion, and I'll try to accommodate your concerns.