Chartjs-Change text size of all point on a line chart in Chart.js 3.x version

1👍

You could change the font options of DataLabels plugin.

datalabels: {
  font: {
    size: 30
  },
  align: 'top',
  anchor: 'end'
}

Leave a comment