Chartjs-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 + "원"
  },

Leave a comment