We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! I didn't find any instruction about how to add this plugin to Vue project if I already use chartjs
The text was updated successfully, but these errors were encountered:
I too want to use this with Vue js but it doesn't seem to be working, may we are not properly configuring it?
Sorry, something went wrong.
Using vue-chartjs it works with the following example:
import { Doughnut } from 'vue-chartjs'; import ChartPluginLabels from 'chartjs-plugin-labels'; export default { name: 'ChartDoughnut', extends: Doughnut, props: { chartData: { type: Object, default: () => {}, }, options: { type: Object, default: () => {}, }, plugins: { type: Array, default: () => [ChartPluginLabels], }, }, mounted() { this.renderChart(this.chartData, this.options); }, };
No branches or pull requests
Hi!
I didn't find any instruction about how to add this plugin to Vue project if I already use chartjs
The text was updated successfully, but these errors were encountered: