[Chartjs]-How to fix Chart.js bubble inner padding problem

2👍

I had the same issue and adding this config to the chart’s options solved the problem for me:

layout: {
  autoPadding: false,
},

Adding some inner padding to the axis overriding the min and max values could be also needed.

Leave a comment