Add Pie Chart component

This commit is contained in:
Jakub Juszczak
2016-07-01 19:02:41 +02:00
parent 84ae683bfa
commit 65251700d7
5 changed files with 69 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
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]
}
]
})
}
})