[Chartjs]-Chart.js doughnut chart tooltip size?

17👍

You can change the title font size too.

options: {
  tooltips: {
    titleFontSize: 10,
    bodyFontSize: 10
  }
}

1👍

options: {
     tooltips: { bodyFontSize: 20 }
}

0👍

For me this was required to go in the library section

{
  ...,
  library: {
    tooltips: {
      ...
    },
  },
  ...
}

Leave a comment