page5Char1Schema.js 920 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * @LastEditors: gcz
  3. */
  4. /*
  5. * @LastEditors: gcz
  6. */
  7. import themeColor from "./color"
  8. let page5Char1Schema = {
  9. title: {
  10. text: '占地面积统计(亩)',
  11. textStyle: {
  12. color: '#02EEFF',
  13. },
  14. show: false
  15. },
  16. grid: {
  17. containLabel: true,
  18. top: "20px",
  19. left: '10px',
  20. bottom: '20px',
  21. right: '24px'
  22. },
  23. tooltip: {},
  24. xAxis: {
  25. data: ['榕江县草珊瑚育苗基地', '榕江县乐乡村养殖基地'],
  26. axisLabel: {
  27. color: "rgba(255, 255, 255, 1)"
  28. }
  29. },
  30. yAxis: {
  31. axisLabel: {
  32. color: "rgba(255, 255, 255, 1)"
  33. }
  34. },
  35. series: [
  36. {
  37. name: '占地面积',
  38. type: 'bar',
  39. data: [235, 302],
  40. itemStyle: {
  41. color: '#02EEFF'
  42. }
  43. }
  44. ]
  45. }
  46. export default page5Char1Schema