Jacco van den Berg
Jacco van den Berg
Yes, like you said with underneath code you can modify the defaults. But this code modifies the default fontSize for all the charts. So if you have multiple charts in...
I guess that everywhere that toFont is used the fallback has to be provided with `options.font` as done here: https://github.com/chartjs/Chart.js/blob/061686895997921508a24e205e0482a7747404d3/src/core/core.scale.js#L642 https://github.com/chartjs/Chart.js/blob/061686895997921508a24e205e0482a7747404d3/src/core/core.scale.js#L99-L104 Since the helper function does not have access to...
Chart.js is fully customizable, what you can do is add a white background to the chart so that it always is clearly vissable or edit the colors yourself. I am...
You can set `options.scales.x.time.unit` to `'day'`: https://jsfiddle.net/1qfr974o/ **Edit:** In case you are using a category axis you can use the tick callback to achieve something similar (might need to adjust...
Don't think so, while it was a good start as I commented there I think there is a a lot to improve on still so guess it's best to leave...
Happening because of this line: https://github.com/chartjs/Chart.js/blob/1a1151b122c481d814850a001de1b2d0468fce4e/src/plugins/plugin.legend.js#L527 Whenn scrolling there is no `mousemove` or `mouseout` event. Don't think listening to the scroll event will solve this issue since the scroll event...
You can use a scriptable function for this: ```js options: { elements: { bar: { borderSkipped: (ctx) => { const { chart, datasetIndex } = ctx; const topVisebleBar = chart.data.datasets.reduce((acc,...
Can you please update your reproducable sample since it does match what you want and not what your bugged image says
If you need it you can already create a custom plugin to achieve this. If you look at [this stack answer](https://stackoverflow.com/a/71437221/8682983) you can provide a custom title. If you provide...
Can't seem to reproduce it, please add a reproducable sample as required by the issue template