vue-chartjs-typescript
Version:
Fork from vue-chartjs with typescript definitions
18 lines (16 loc) • 409 B
JavaScript
import { Line } from '../BaseCharts'
export default {
extends: Line,
mounted () {
this.renderChart({
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [
{
label: 'Data One',
backgroundColor: '#f87979',
data: [40, 39, 10, 40, 39, 80, 40]
}
]
}, {responsive: true, maintainAspectRatio: false})
}
}