Install & Download:
# NPM
$ npm install @seregpie/vue-chart --saveDescription:
Just another Vue.js wrapper for the Chart.js that lets you create HTML5 charts using canvas.
Supports chart types: line, bar, donut, pie, and radar.
Basic usage:
1. Install and import the component.
import Vue from 'vue'; import VueChart from '@seregpie/vue-chart';
2. Register the component.
Vue.component(VueChart.name, VueChart);
// or
export default {
components: {
[VueChart.name]: VueChart,
},
};3. Insert the chart component in your app template.
<vue-chart
style="width: 800px; height: 600px;"
:data="chartData"
:options="{scales: {yAxes: [{ticks: {beginAtZero: true}}]}}"
:update-config="{duration: 2000, easing: 'easeOutBounce'}"
type="bar"
/>Preview: