barOption.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. import * as echarts from "echarts";
  2. const commonStyle = {
  3. xAxis: {
  4. type: "category",
  5. axisTick: {
  6. show: false,
  7. },
  8. axisLine: {
  9. lineStyle: {
  10. color: "rgba(185,185,185,0.3)",
  11. },
  12. },
  13. axisLabel: {
  14. show: true,
  15. color: "rgba(255,255,255,0.6)",
  16. margin: 5,
  17. },
  18. data: ["正常", "较大", "异常"],
  19. },
  20. yAxis: {
  21. type: "value",
  22. show: false,
  23. axisLine: {
  24. show: false,
  25. },
  26. },
  27. grid: {
  28. top: "0%",
  29. left: "-10%",
  30. right: "0%",
  31. bottom: "0%",
  32. containLabel: true,
  33. },
  34. };
  35. const styleName1 = {
  36. ...commonStyle,
  37. series: [
  38. {
  39. data: [32, 40, 42],
  40. type: "bar",
  41. barWidth: 26,
  42. label: {
  43. show: true,
  44. color: "#fff",
  45. position: "insideTop",
  46. },
  47. itemStyle: {
  48. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  49. {
  50. offset: 0,
  51. color: "#BBA269",
  52. },
  53. {
  54. offset: 1,
  55. color: "#3D3523",
  56. },
  57. ]),
  58. borderRadius: [2, 2, 0, 0],
  59. },
  60. },
  61. ],
  62. };
  63. const styleName2 = {
  64. ...commonStyle,
  65. series: [
  66. {
  67. data: [32, 40, 42],
  68. type: "bar",
  69. barWidth: 26,
  70. stack: "total",
  71. label: {
  72. show: true,
  73. color: "#fff",
  74. position: "insideTop",
  75. },
  76. itemStyle: {
  77. normal:{
  78. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  79. {
  80. offset: 0,
  81. color: "#BBA269",
  82. },
  83. {
  84. offset: 1,
  85. color: "#3D3523",
  86. },
  87. ]),
  88. },
  89. emphasis: {
  90. color: '#B81500' // 高亮时的颜色
  91. },
  92. // borderRadius: [2, 2, 0, 0],
  93. },
  94. },
  95. {
  96. data: [130, 140, 80,0, 0],
  97. type: "bar",
  98. barWidth: 26,
  99. stack: "total",
  100. label: {
  101. show: true,
  102. color: "#fff",
  103. position: "insideTop",
  104. formatter: ({ value }) => {
  105. return value ? value : "";
  106. },
  107. },
  108. itemStyle: {
  109. normal:{
  110. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  111. {
  112. offset: 0,
  113. color: "#bb7d4c",
  114. },
  115. {
  116. offset: 1,
  117. color: "#90603a",
  118. },
  119. ]),
  120. },
  121. emphasis: {
  122. color: '#B81500' // 高亮时的颜色
  123. },
  124. borderRadius: [2, 2, 0, 0],
  125. },
  126. },
  127. {
  128. data: [0,0,80, 130, 130],
  129. type: "bar",
  130. barWidth: 26,
  131. stack: "total",
  132. itemStyle: {
  133. normal:{
  134. color: "rgba(56,56,56,0.94)",
  135. },
  136. emphasis: {
  137. color: '#B81500' // 高亮时的颜色
  138. },
  139. borderRadius: [2, 2, 0, 0],
  140. },
  141. label: {
  142. show: true,
  143. position: "insideTop",
  144. color: "#fff",
  145. formatter: ({ value }) => {
  146. return value ? value : "";
  147. },
  148. },
  149. },
  150. ],
  151. };
  152. export const barOption = { styleName1, styleName2 };