1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "config": {
- "type": "bar",
- "data": {
- "labels": ["2016", "2018", "2020", "2024", "2030"],
- "datasets": [{
- "backgroundColor": "#FF6384",
- "data": [1, null, 3, 4, 5]
- }]
- },
- "options": {
- "responsive": false,
- "legend": false,
- "title": false,
- "scales": {
- "xAxes": [{
- "type": "time",
- "display": false,
- "barPercentage": 1,
- "categoryPercentage": 1,
- "maxBarThickness": 8,
- "ticks": {
- "source": "labels"
- }
- }],
- "yAxes": [{
- "display": false,
- "ticks": {
- "beginAtZero": true
- }
- }]
- }
- }
- },
- "options": {
- "canvas": {
- "height": 256,
- "width": 512
- }
- }
- }
|