[Chartjs]-In chartjs, add link text on tooltip

0👍

As far as I know, you are unable to add HTML content into the tooltips. Try creating an external tooltip instead.
https://www.chartjs.org/docs/latest/samples/tooltip/html.html

-1👍

Try using escape sequence

return 'test' + \'(<a href="foo">filter</a>)' + label;

Leave a comment