Hello can anyone tell how can we customize the values for borderDash for some specific labels in bubble charts? #11527
Unanswered
alokdas-cvl
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
borderDash: function (context: any) {
context.scale.ticks.forEach((tick: any) => {
if(tick.label === '') {
return [4, 4];
} else {
return [0, 0];
}
})
}
Beta Was this translation helpful? Give feedback.
All reactions