Replies: 2 comments
-
Here is an example where I was able to disable it because I'm just using this as an easy way to make a circle rating SVG. this.drChart = {
chart: {
type: 'donut',
},
series: [
this.data.dr['domain_rating'],
100 - this.data.dr['domain_rating'],
],
colors: [
'#7362BF',
'#eaecee',
],
plotOptions: {
pie: {
donut: {
size: '50%',
},
expandOnClick: false,
}
},
legend: { show: false },
dataLabels: { enabled: false },
tooltip: { enabled: false },
states: {
hover: { filter: { type: 'none ' } },
active: { filter: { type: 'none ' } },
},
}; |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi,
a running example on codepen or codesandbox is also helpfull. Cheers |
Beta Was this translation helpful? Give feedback.
0 replies
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I came here for help.
I can't find any informations, how to disable interactivity in vanila javascript.
Current code:
for (let i = 0; i < 3; i++) {
let stock = eventData.stocks[i];
let selchart = "chart_" + stock.name;
Can anyone help me out?
Best Regards
Beta Was this translation helpful? Give feedback.
All reactions