Usage within vuepress #231
-
Hi, Does anyone have any working versions of chart.js inside vuepress using this (or any other) chart.js plugins? Thanks for any help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Chart.js does not maintain You can import and register Chart.js plugins in the // .vuepress/enhanceApp.js
import {Chart} from 'chart.js';
import ChartDataLabels from 'chartjs-plugin-datalabels';
export default () => {
Chart.plugins.register(ChartDataLabels);
}; |
Beta Was this translation helpful? Give feedback.
Chart.js does not maintain
vuepress-plugin-chart
, so you should ask your questions to the developer of this vuepress plugin instead. Since I'm also using VuePress for this project, I can help on this request but if you need extra support, please use their repository.You can import and register Chart.js plugins in the
.vuepress/enhanceApp.js
file of your documentation: