6π
β
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.
Source:stackexchange.com