lineCharts.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <template>
  2. <div class="chart" :id="id"></div>
  3. </template>
  4. <script>
  5. import util from "@/helper/util.js";
  6. import partten from "@/helper/partten.js";
  7. import * as echarts from "echarts";
  8. import dayjs from "dayjs";
  9. export default {
  10. name: "yfdl-multiple-bar-chart",
  11. componentName: "yfdl-multiple-bar-chart",
  12. props: {
  13. width: {
  14. type: String,
  15. default: "100%",
  16. },
  17. height: {
  18. type: String,
  19. default: "100%",
  20. },
  21. // 传入数据
  22. list: {
  23. type: Array,
  24. default: () => [],
  25. },
  26. },
  27. data() {
  28. return {
  29. id: "",
  30. chart: null,
  31. firstAnimation: true,
  32. };
  33. },
  34. computed: {
  35. xdata() {
  36. return [
  37. "一月",
  38. "二月",
  39. "三月",
  40. "四月",
  41. "五月",
  42. "六月",
  43. "七月",
  44. "八月",
  45. "九月",
  46. "十月",
  47. "十一月",
  48. "十二月",
  49. ];
  50. },
  51. series() {
  52. let result = [];
  53. if (this.list && this.list.length > 0) {
  54. this.list.forEach((listItem, index) => {
  55. let seriesItem = {
  56. yAxisIndex: 0,
  57. name: listItem?.name,
  58. type: "bar",
  59. data: listItem?.data,
  60. itemStyle: {
  61. color: listItem.color,
  62. },
  63. barWidth: "20%",
  64. };
  65. // if (index == 3) {
  66. // seriesItem = {
  67. // yAxisIndex: 1,
  68. // name: listItem?.name,
  69. // type: "line",
  70. // smooth: true,
  71. // data: listItem?.data,
  72. // itemStyle: {
  73. // color: listItem.color,
  74. // },
  75. // };
  76. // }
  77. result.push(seriesItem);
  78. });
  79. }
  80. return result;
  81. },
  82. },
  83. methods: {
  84. resize() {
  85. this.initChart();
  86. },
  87. initChart() {
  88. let chart = echarts.init(this.$el);
  89. let option = {
  90. tooltip: {
  91. trigger: "axis",
  92. backgroundColor: "rgba(5, 187, 76,0.35)",
  93. borderColor: "#05bb4c",
  94. formatter: function (params) {
  95. var htmlStr = `<div style='margin-bottom:5px'>${params[0].axisValue}</div>`;
  96. for (var i = 0; i < params.length; i++) {
  97. htmlStr += `<div style='margin-bottom:2px'>`;
  98. var param = params[i];
  99. var seriesName = param.seriesName; //图例名称
  100. var value = param.value; //y轴值
  101. var data = param.data; //单位判断code
  102. var mark = param.marker; //点
  103. var unit = `<span style='font-size:14px'>`;
  104. htmlStr += mark; //一个点
  105. htmlStr += `${seriesName} : ${
  106. value != null ? value + unit + ` 万kWh</span>` : "--"
  107. }`; //圆点后面显示的文本
  108. htmlStr += "</div>";
  109. }
  110. return htmlStr;
  111. },
  112. padding: [10, 10, 3, 10],
  113. textStyle: {
  114. color: "#fff",
  115. fontSize: 16,
  116. },
  117. axisPointer: {
  118. type: "shadow",
  119. shadowStyle: {
  120. color: "rgba(105,105,105, .05)",
  121. width: "1",
  122. },
  123. },
  124. },
  125. legend: {
  126. show: true,
  127. data: this.list?.map((i) => i?.name),
  128. right: 56,
  129. icon: "ract",
  130. itemWidth: 8,
  131. itemHeight: 8,
  132. inactiveColor: partten.getColor("gray"),
  133. textStyle: {
  134. fontSize: 12,
  135. color: partten.getColor("grayl"),
  136. },
  137. },
  138. grid: {
  139. top: "10%",
  140. left: "2%",
  141. right: "4%",
  142. bottom: "5%",
  143. containLabel: true,
  144. },
  145. xAxis: [
  146. {
  147. type: "category",
  148. data: this?.xdata,
  149. nameLocation: "center",
  150. axisPointer: {
  151. type: "shadow",
  152. },
  153. axisLine: {
  154. lineStyle: {
  155. color: "#93989A",
  156. },
  157. },
  158. axisLabel: {
  159. textStyle: {
  160. fontSize: 14,
  161. color: "#93989A",
  162. },
  163. },
  164. },
  165. ],
  166. yAxis: [
  167. {
  168. type: "value",
  169. name: "单位:万千瓦时",
  170. nameTextStyle: {
  171. color: "#93989A",
  172. },
  173. splitLine: {
  174. show: true,
  175. lineStyle: {
  176. color: "rgba(96,103,105,0.3)",
  177. type: "dashed",
  178. },
  179. },
  180. axisLabel: {
  181. textStyle: {
  182. fontSize: 14,
  183. color: "#93989A",
  184. },
  185. },
  186. },
  187. // {
  188. // type: "value",
  189. // name: "单位:W/m²",
  190. // nameTextStyle: {
  191. // color: "#93989A",
  192. // },
  193. // splitLine: {
  194. // show: false,
  195. // },
  196. // axisLabel: {
  197. // textStyle: {
  198. // fontSize: 14,
  199. // color: "#93989A",
  200. // },
  201. // },
  202. // },
  203. ],
  204. series: this?.series,
  205. };
  206. chart.clear();
  207. chart.setOption(option);
  208. this.resize = function () {
  209. chart.resize();
  210. };
  211. window.addEventListener("resize", this.resize);
  212. },
  213. },
  214. created() {
  215. this.$nextTick(() => {
  216. this.id = "pie-chart-" + util.newGUID();
  217. });
  218. },
  219. mounted() {
  220. this.$nextTick(() => {
  221. this.$el.style.width = this.width;
  222. this.$el.style.height = this.height;
  223. this.initChart();
  224. this.firstAnimation = false;
  225. });
  226. },
  227. updated() {
  228. this.$nextTick(() => {
  229. this.initChart();
  230. });
  231. },
  232. unmounted() {
  233. window.removeEventListener("resize", this.resize);
  234. },
  235. watch: {
  236. "$store.state.themeName"() {
  237. this.initChart();
  238. },
  239. },
  240. };
  241. </script>
  242. <style lang="less">
  243. .chart {
  244. width: 100%;
  245. height: 100%;
  246. display: inline-block;
  247. }
  248. </style>