Chart.js/test/fixtures/controller.bar/bar-thickness-no-overlap.json
2020-11-24 22:27:51 +02:00

51 lines
1.3 KiB
JSON

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