flowchartjs.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "x": 0,
  3. "y": 0,
  4. "line-width": 3,
  5. "line-length": 50,
  6. "text-margin": 10,
  7. "font-size": 14,
  8. "font-color": "black",
  9. "line-color": "black",
  10. "element-color": "black",
  11. "fill": "white",
  12. "yes-text": "yes",
  13. "no-text": "no",
  14. "arrow-end": "block",
  15. "scale": 1,
  16. "symbols": {
  17. "start": {
  18. "font-color": "red",
  19. "element-color": "green",
  20. "fill": "yellow"
  21. },
  22. "end": {
  23. "class": "end-element"
  24. }
  25. },
  26. "flowstate": {
  27. "past": {
  28. "fill": "#CCCCCC",
  29. "font-size": 12
  30. },
  31. "current": {
  32. "fill": "yellow",
  33. "font-color": "red",
  34. "font-weight": "bold"
  35. },
  36. "future": {
  37. "fill": "#FFFF99"
  38. },
  39. "request": {
  40. "fill": "blue"
  41. },
  42. "invalid": {
  43. "fill": "#444444"
  44. },
  45. "approved": {
  46. "fill": "#58C4A3",
  47. "font-size": 12,
  48. "yes-text": "APPROVED",
  49. "no-text": "n/a"
  50. },
  51. "rejected": {
  52. "fill": "#C45879",
  53. "font-size": 12,
  54. "yes-text": "n/a",
  55. "no-text": "REJECTED"
  56. }
  57. }
  58. }