score:4

Accepted answer

data values on chart

if that's your requirement.

you might want to use chartjs-plugin-datalabels plugin. it works with vue-chartjs.

import chart from 'chart.js'
import { line } from 'vue-chartjs'
import chartjsplugindatalabels from 'chartjs-plugin-datalabels'

incase you don't want the plugin globally.

chart.defaults.global.plugins.datalabels.display = false;

you can find the documentation for adding a plugin https://vue-chartjs.org/api/#addplugin.


Related Query

More Query from same tag