Change example location to src folder for easier testing

This commit is contained in:
Jakub Juszczak
2016-09-08 13:06:36 +02:00
parent 9bcffae429
commit 377ae5e27a
8 changed files with 8 additions and 8 deletions

View File

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