Jacco van den Berg
Jacco van den Berg
If you want your onHover function to only work for 1 dataset you need to write it like this: ```js onHover:function(evt,activeEls,chart){ if (activeEls.datasetIndex !== 1) { return; } // Your...
Closing as this is not a bug, just a wrong implementation
What device are you using? Tested with a iphone 11 and it seemed to work fine
This is valid javascript. It might be that you are transpiling it to a lower version which does not understand this. Adding `@babel/plugin-proposal-class-properties` should resolve this: https://stackoverflow.com/questions/35517245/error-missing-class-properties-transform
It would be good to also add a test for this
With some carefull own logic with creating the bubbles you could create this already using a bubble chart. But if you want it as an chart type that does that...
There does not seem to be any ts errors 
Chart.js does not have a version 5.2, current max version is 4.3.0. But from your screenshots that looks like a rendering issue in chrome, seems verry similiar to another issue...
If you set the `barPercentage` and `categoryPercentage` both to `1` the space will disappear. https://www.chartjs.org/docs/4.4.0/charts/bar.html#barpercentage-vs-categorypercentage https://stackblitz.com/edit/github-f6olvx-1mtrxz?file=src%2FchartConfig.ts
Do you have any reproducible sample of your issues and a list of what is wrong/broke when updating. Also from which version did you update?