chart.json 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "series": [
  3. {
  4. "data": []
  5. }
  6. ],
  7. "colors": ["#3C50E0"],
  8. "chart": {
  9. "fontFamily": "Satoshi, sans-serif",
  10. "type": "bar",
  11. "height": 350,
  12. "toolbar": {
  13. "show": false
  14. }
  15. },
  16. "plotOptions": {
  17. "bar": {
  18. "horizontal": false,
  19. "columnWidth": "55%",
  20. "endingShape": "rounded",
  21. "borderRadius": 2
  22. }
  23. },
  24. "dataLabels": {
  25. "enabled": false
  26. },
  27. "stroke": {
  28. "show": true,
  29. "width": 4,
  30. "colors": ["transparent"]
  31. },
  32. "xaxis": {
  33. "categories": [],
  34. "floating": false,
  35. "labels": {
  36. "show": true,
  37. "style": {
  38. "fontFamily": "Inter, sans-serif",
  39. "cssClass": "text-xs font-normal !fill-body dark:!fill-bodydark"
  40. }
  41. },
  42. "axisBorder": {
  43. "show": false
  44. },
  45. "axisTicks": {
  46. "show": false
  47. }
  48. },
  49. "legend": {
  50. "show": true,
  51. "position": "top",
  52. "horizontalAlign": "left",
  53. "fontFamily": "Satoshi",
  54. "markers": {
  55. "radius": 99
  56. }
  57. },
  58. "yaxis": {
  59. "title": false,
  60. "labels": {
  61. "show": true,
  62. "style": {
  63. "fontFamily": "Inter, sans-serif",
  64. "cssClass": "text-xs font-normal !fill-body dark:!fill-bodydark"
  65. }
  66. }
  67. },
  68. "grid": {
  69. "show": false,
  70. "strokeDashArray": 4,
  71. "padding": {
  72. "left": 2,
  73. "right": 2,
  74. "top": -14
  75. },
  76. "yaxis": {
  77. "lines": {
  78. "show": false
  79. }
  80. }
  81. },
  82. "fill": {
  83. "opacity": 1
  84. },
  85. "tooltip": {
  86. "shared": true,
  87. "intersect": false,
  88. "x": {
  89. "show": false
  90. },
  91. "y": {}
  92. }
  93. }