Replies: 1 comment 1 reply
-
It should work, do you have a working example of it not working because in the latest build it seems to work fine with a quick test as seen in screenshot EDIT: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I cannot seem to get
options.plugins.tooltip.callbacks.label = function(context) { .... }
to work for the PolarArea.It seems like it is always overridden by a global default. Is that true?
In order to get what I want to do to work, I have to modify
Chart.defaults.polarArea.tooltips.callbacks.label = function (context) {......}
before I create/render the chart.
This becomes problematic if I have other charts to render in a React environment. Is there a way to set the tooltip callbacks during PolarArea chart creation?
From what I gather the following doesn't work?
Is that true?
Beta Was this translation helpful? Give feedback.
All reactions