barCharts.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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: "multiple-bar-chart",
  11. componentName: "multiple-bar-chart",
  12. props: {
  13. width: {
  14. type: String,
  15. default: "100%",
  16. },
  17. height: {
  18. type: String,
  19. default: "13.889vh",
  20. },
  21. pillarName: {
  22. type: String,
  23. default: "",
  24. },
  25. top: {
  26. type: Number,
  27. default: 20,
  28. },
  29. interval: {
  30. type: Number,
  31. default: 0,
  32. },
  33. padding: {
  34. type: Array,
  35. default: () => [10, 10],
  36. },
  37. // 传入数据
  38. list: {
  39. type: Array,
  40. default: () => [],
  41. },
  42. // 单位
  43. units: {
  44. type: String,
  45. default: "",
  46. },
  47. // 显示 legend
  48. showLegend: {
  49. type: Boolean,
  50. default: true,
  51. },
  52. // X轴是否为时间
  53. xdate: {
  54. type: Boolean,
  55. default: true,
  56. },
  57. // 颜色#
  58. color: {
  59. type: Array,
  60. default: () => [
  61. "#005bd9",
  62. "#019f2e",
  63. "#db6200",
  64. "#a10f0f",
  65. "#850894",
  66. "#9fa0a2",
  67. ],
  68. },
  69. showAnimation: {
  70. type: Boolean,
  71. default: true,
  72. },
  73. colorIndex: {
  74. type: Boolean,
  75. default: false,
  76. },
  77. // 柱子最大宽度
  78. barMaxWidth: {
  79. type: Number || String,
  80. default: 0,
  81. },
  82. // 柱子间距
  83. barGap: {
  84. type: Number || String,
  85. default: 0,
  86. },
  87. showkey: {
  88. type: String,
  89. default: "",
  90. },
  91. showName: {
  92. type: String,
  93. default: "",
  94. },
  95. },
  96. data() {
  97. return {
  98. id: "",
  99. chart: null,
  100. firstAnimation: true,
  101. };
  102. },
  103. computed: {
  104. legend() {
  105. return this.list.map((t) => {
  106. return t.name;
  107. });
  108. },
  109. xdata() {
  110. if (this.list[0].value.length) {
  111. return this.list[0].value.map((item) => item.dateTime);
  112. } else {
  113. return [];
  114. }
  115. },
  116. series() {
  117. let result = [];
  118. if (this.showkey == "electric") {
  119. this.list.forEach((value, index) => {
  120. let seriesItem = {
  121. name: value.name,
  122. type: "bar",
  123. barWidth: "12",
  124. animation: this.firstAnimation && this.showAnimation,
  125. itemStyle: {
  126. borderColor: this.color[index],
  127. borderWidth: 1,
  128. },
  129. data: value.value,
  130. };
  131. result.push(seriesItem);
  132. });
  133. } else {
  134. result = [
  135. {
  136. name: this.list[0].name,
  137. type: "bar",
  138. barWidth: "12",
  139. itemStyle: {
  140. borderColor: this.color[0],
  141. borderWidth: 1,
  142. },
  143. data: this.list[0].value,
  144. },
  145. ];
  146. }
  147. return result;
  148. },
  149. },
  150. methods: {
  151. resize() {
  152. this.initChart();
  153. },
  154. initChart() {
  155. let chart = echarts.init(this.$el);
  156. let option = {
  157. color: this.color,
  158. zoom: 12,
  159. tooltip: {
  160. trigger: "axis",
  161. backgroundColor: "rgba(0,70,199,0.35)",
  162. borderWidth: 1,
  163. padding: [10, 10, 3, 10],
  164. borderColor: "#074EAD",
  165. textStyle: {
  166. color: "#fff",
  167. fontSize: 16,
  168. fontFamily: "楷体",
  169. fontWeight: "normal",
  170. },
  171. axisPointer: {
  172. type: "shadow",
  173. shadowStyle: {
  174. color: "rgba(105,105,105, .05)",
  175. width: "1",
  176. },
  177. },
  178. },
  179. legend: {
  180. show: this.showLegend,
  181. data: this.legend,
  182. padding: this.padding,
  183. right: 56,
  184. icon: "ract",
  185. itemWidth: 8,
  186. itemHeight: 8,
  187. inactiveColor: partten.getColor("gray"),
  188. textStyle: {
  189. fontSize: 12,
  190. color: partten.getColor("grayl"),
  191. },
  192. },
  193. grid: {
  194. top: this.top,
  195. left: 8,
  196. right: 8,
  197. bottom: 90,
  198. containLabel: true,
  199. },
  200. xAxis: [
  201. {
  202. type: "category",
  203. data: this.xdata,
  204. axisLabel: {
  205. interval: this.interval,
  206. fontSize: 12,
  207. textStyle: {
  208. color: "rgb(116,124,128)",
  209. },
  210. },
  211. },
  212. ],
  213. yAxis: {
  214. type: "value",
  215. name: this.units,
  216. //分格线
  217. splitLine: {
  218. show: false,
  219. },
  220. },
  221. series: this.series,
  222. };
  223. chart.clear();
  224. chart.setOption(option);
  225. this.resize = function () {
  226. chart.resize();
  227. };
  228. window.addEventListener("resize", this.resize);
  229. },
  230. },
  231. created() {
  232. this.$nextTick(() => {
  233. this.id = "pie-chart-" + util.newGUID();
  234. });
  235. },
  236. mounted() {
  237. this.$nextTick(() => {
  238. this.$el.style.width = this.width;
  239. this.$el.style.height = this.height;
  240. this.initChart();
  241. this.firstAnimation = false;
  242. });
  243. },
  244. updated() {
  245. this.$nextTick(() => {
  246. this.initChart();
  247. });
  248. },
  249. unmounted() {
  250. window.removeEventListener("resize", this.resize);
  251. },
  252. watch: {
  253. "$store.state.themeName"() {
  254. this.initChart();
  255. },
  256. },
  257. };
  258. </script>
  259. <style lang="less">
  260. .chart {
  261. width: 100%;
  262. height: 100%;
  263. display: inline-block;
  264. margin-top: 5px;
  265. }
  266. </style>