Chart.js/test/fixtures/controller.bar/bar-thickness-reverse.json
Ben McCann 9bd2af9e9b Move location of dataset options (#6955)
* Move location of dataset options
* Fix misplaced period
2020-01-13 19:39:30 -05:00

54 lines
1.4 KiB
JSON

{
"config": {
"type": "bar",
"data": {
"labels": ["2016", "2018", "2020", "2024", "2030"],
"datasets": [{
"backgroundColor": "#FF6384",
"data": [1, null, 3, 4, 5]
}, {
"backgroundColor": "#36A2EB",
"data": [5, 4, 3, null, 1]
}, {
"backgroundColor": "#FFCE56",
"data": [3, 5, 2, null, 4]
}]
},
"options": {
"responsive": false,
"legend": false,
"title": false,
"bar": {
"datasets": {
"barPercentage": 1,
"categoryPercentage": 1
}
},
"scales": {
"x": {
"type": "time",
"display": false,
"offset": false,
"time": {
"parser": "YYYY"
},
"reverse": true,
"ticks": {
"source": "labels"
}
},
"y": {
"display": false,
"beginAtZero": true
}
}
}
},
"options": {
"canvas": {
"height": 256,
"width": 512
}
}
}