[Vuejs]-Chartjs 4.2.1 change datalabes style vue

1๐Ÿ‘

โœ…

To change the font, you should implement the scriptable options for the font options and not the formatter one.

  datalabels: {
    font: (context) => context.dataIndex === 1 ? ({weight: 'bold'}) : undefined 
    formatter: (value) => value + "์›"
  },
๐Ÿ‘คuser2057925

Leave a comment