bar-thickness-max.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "config": {
  3. "type": "bar",
  4. "data": {
  5. "labels": ["2016", "2018", "2020", "2024", "2030"],
  6. "datasets": [{
  7. "backgroundColor": "#FF6384",
  8. "data": [1, null, 3, 4, 5]
  9. }]
  10. },
  11. "options": {
  12. "responsive": false,
  13. "legend": false,
  14. "title": false,
  15. "scales": {
  16. "xAxes": [{
  17. "type": "time",
  18. "display": false,
  19. "barPercentage": 1,
  20. "categoryPercentage": 1,
  21. "maxBarThickness": 8,
  22. "ticks": {
  23. "source": "labels"
  24. }
  25. }],
  26. "yAxes": [{
  27. "display": false,
  28. "ticks": {
  29. "beginAtZero": true
  30. }
  31. }]
  32. }
  33. }
  34. },
  35. "options": {
  36. "canvas": {
  37. "height": 256,
  38. "width": 512
  39. }
  40. }
  41. }