Files
vue-chartjs/src/examples/LineExample.js
2018-01-31 07:58:29 +01:00

18 lines
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})
}
}