stack-bar-1.txt 918 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "title":{
  3. "text":"Test stacked bar charts",
  4. "style":"{font-size:16px;}"
  5. },
  6. "elements":[
  7. {
  8. "type": "bar_stack",
  9. "keys": [
  10. {"colour":"#FFB900", "text": "Key 1", "font-size": 10},
  11. {"colour":"#FFB9F0", "text": "Key 2", "font-size": 16},
  12. {"colour":"#FFB9F0", "text": "Key 3"},
  13. {"colour":"#FFB9F0", "font-size": 16},
  14. {"text": "Key 5", "font-size": 16}
  15. ],
  16. "values" : [
  17. [2.5,{"val":5}],
  18. [{"val":2.5},{"val":5},{"val":2.5}],
  19. null,
  20. [{"val":5},{"val":5},{"val":2},{"val":2},{"val":2,"colour":"#ff00ff"},{"val":2},{"val":2}]
  21. ]
  22. }
  23. ],
  24. "x_axis":{
  25. "max":4,
  26. "steps": 1,
  27. "labels": {
  28. "labels": ["January","February","March","April"]
  29. },
  30. "stroke": 12,
  31. "tick-height": 6
  32. },
  33. "y_axis":{
  34. "max": 20
  35. }
  36. }