Change example data

This commit is contained in:
Jakub Juszczak
2016-06-26 15:51:42 +02:00
parent 63d731695e
commit bab78b6991

View File

@@ -3,17 +3,12 @@ import BarChart from '../BaseCharts/Bar'
export default BarChart.extend({
ready () {
this.render({
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
datasets: [
{
label: 'Data One',
backgroundColor: '#f87979',
data: [40, 39, 10, 40, 39, 80, 40]
},
{
label: 'Data Two',
backgroundColor: '#f87979',
data: [0, 0, 0, 39.30, 39.30, 39.30]
data: [40, 20, 12, 39, 10, 40, 39, 80, 40, 20, 12, 11]
}
]
})