barOption.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import * as echarts from "echarts";
  2. const styleName1 = {
  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. series: [
  35. {
  36. data: [32, 40, 42],
  37. type: "bar",
  38. barWidth: 26,
  39. label: {
  40. show: true,
  41. color: "#fff",
  42. position: "insideTop",
  43. },
  44. itemStyle: {
  45. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  46. {
  47. offset: 0,
  48. color: "#BBA269",
  49. },
  50. {
  51. offset: 1,
  52. color: "#3D3523",
  53. },
  54. ]),
  55. borderRadius: [2, 2, 0, 0],
  56. },
  57. },
  58. ],
  59. };
  60. export const barOption = {styleName1};