bar-thickness-flex.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "config": {
  3. "type": "bar",
  4. "data": {
  5. "labels": ["2017", "2018", "2020", "2024", "2038"],
  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. "barThickness": "flex",
  22. "time": {
  23. "parser": "YYYY"
  24. },
  25. "ticks": {
  26. "source": "labels"
  27. }
  28. }],
  29. "yAxes": [{
  30. "display": false,
  31. "ticks": {
  32. "beginAtZero": true
  33. }
  34. }]
  35. }
  36. }
  37. },
  38. "options": {
  39. "canvas": {
  40. "height": 256,
  41. "width": 512
  42. }
  43. }
  44. }