chartjs-plugin-labels
chartjs-plugin-labels copied to clipboard
Does it have support for vue-chartjs?
Under the hood vue-chartjs using Chart js, so it should work with Vue projects as well but I tried something like this this.options = { responsive: true, maintainAspectRatio: false, devicePixelRatio: 2, tooltips: { enabled: true, }, title: { display: true, text: 'Thread state %', position: 'bottom', fontSize: 20, }, plugins: { labels: [ { render: 'value', position: 'outside', }, { render: 'percentage', }, ], }, };
other chart js functionalities are working so it should work too but we are missing something?
You have solved issue? same problem here