qxt_nian.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <div
  3. id="linechar_n"
  4. style="width: 1900px; height: 350px; margin-right: 30px; margin: auto"
  5. ></div>
  6. </template>
  7. <script>
  8. import * as echarts from "echarts";
  9. export default {
  10. data() {
  11. return {
  12. getChartData: [],
  13. };
  14. },
  15. methods: {
  16. drawLine_n(lineDate,fj) {
  17. var chartDom1 = document.getElementById("linechar_n");
  18. var myChart1 = echarts.init(chartDom1);
  19. var option1;
  20. option1 = {
  21. title: {
  22. text: "月功率曲线",
  23. },
  24. tooltip: {
  25. trigger: "axis",
  26. },
  27. legend: {
  28. data: fj,
  29. },
  30. grid: {
  31. left: "3%",
  32. right: "4%",
  33. bottom: "3%",
  34. containLabel: true,
  35. },
  36. toolbox: {
  37. feature: {
  38. saveAsImage: {},
  39. },
  40. },
  41. xAxis: {
  42. type: "category",
  43. boundaryGap: false,
  44. data: lineDate.speed,
  45. },
  46. yAxis: {
  47. type: "value",
  48. },
  49. series: [
  50. {
  51. name:fj[0],
  52. type: "line",
  53. stack: "总量",
  54. smooth: true,
  55. data: lineDate.value1,
  56. },
  57. {
  58. name:fj[1],
  59. type: "line",
  60. stack: "总量",
  61. smooth: true,
  62. data: lineDate.value2,
  63. },
  64. {
  65. name:fj[2],
  66. type: "line",
  67. stack: "总量",
  68. smooth: true,
  69. data: lineDate.value3,
  70. },
  71. {
  72. name:fj[3],
  73. type: "line",
  74. stack: "总量",
  75. smooth: true,
  76. data: lineDate.value4,
  77. },
  78. {
  79. name:fj[4],
  80. type: "line",
  81. stack: "总量",
  82. smooth: true,
  83. data: lineDate.value5,
  84. },
  85. ],
  86. };
  87. option1 && myChart1.setOption(option1);
  88. },
  89. },
  90. };
  91. </script>