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