Chartjs-How to add space to the bottom of the chart in chartjs [angular]

0👍

You just need to add padding in chart layout so that chart can get space to display label.

options:{
  layout: {
    padding: {
      left: 30,
      right: 30,
      top: 30,
      bottom: 30
    }
  },
}

Leave a comment