mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
21 lines
462 B
JavaScript
21 lines
462 B
JavaScript
import DoughnutChart from '../BaseCharts/Doughnut'
|
|
|
|
export default DoughnutChart.extend({
|
|
mounted () {
|
|
this.renderChart({
|
|
labels: ['VueJs', 'EmberJs', 'ReactJs', 'AngularJs'],
|
|
datasets: [
|
|
{
|
|
backgroundColor: [
|
|
'#41B883',
|
|
'#E46651',
|
|
'#00D8FF',
|
|
'#DD1B16'
|
|
],
|
|
data: [40, 20, 80, 10]
|
|
}
|
|
]
|
|
}, {responsive: true, maintainAspectRatio: false})
|
|
}
|
|
})
|