stockiNail
stockiNail
sorry if I'm jumping in the thread. Issue #10220 was addressing the issue about hover offset (similar of the offset one). I didn't check the PR in deep, but I...
> Also when adding a custom scale that chart.js does not know the kind of (because of first letter) it does appear as an extra y scale but as soon...
@LeeLenaleee sorry I misunderstood that and now it's clear! I didn't recognize that the second axis will override the default one and you are definitely right. I had the doubt...
@LeeLenaleee I was thinking about this issue. Maybe you should remove the default scale override because I have seen many users which are using CHART.JS, assuming that this is the...
@corocoto as workaround, you could use the axis callbacks, checking the length of the string and cut it (adding ellipsis) if longer then expected. It's not perfect and you must...
@heavyStuff3000 can you try to stop the animation before updating by `myChart.stop();`? ```javascript function second_chart() { myChart.data.labels = ["äpple", "orange", "banana", "pear", "peach", "raisins"]; myChart.data.datasets[0].data = [22, 1, 21, 23,...
I don't know if it's working as design. I think the update could check if there is a running animation and stop it as first thing. I think it's better...
@LeeLenaleee in my opinion as well, this is the most desired behaviour achievable. You could also leverage on the layout.padding adding space on bottom of chart (leaving the radius to...
@doc-code-hub It seems similar to #10220. Maybe the workaround, proposed there, can help.
```javascript export const options = { responsive: true, maintainAspectRatio: true, layout: { padding: { bottom(ctx) { const chart = ctx.chart; const offset = chart.data.datasets[0].offset || 0; return offset / 2;...