bar-line-chart.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  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. export default {
  9. name: "multiple-bar-chart",
  10. componentName: "multiple-bar-chart",
  11. props: {
  12. width: {
  13. type: String,
  14. default: "100%",
  15. },
  16. height: {
  17. type: String,
  18. default: "800px",
  19. },
  20. // 传入数据
  21. bardata: {
  22. type: Object,
  23. default: () => {
  24. return {
  25. area: [
  26. "风场1",
  27. "风场2",
  28. "风场3",
  29. "风场4",
  30. "风场5",
  31. "风场6",
  32. "风场7",
  33. "风场8",
  34. "风场9",
  35. ],
  36. legend: [
  37. "实际电量",
  38. "计划检修损失",
  39. "非计划检修损失",
  40. "限电损失",
  41. "受累损失",
  42. "性能损失",
  43. ],
  44. data: [
  45. [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
  46. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  47. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  48. [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
  49. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  50. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  51. [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
  52. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  53. ],
  54. };
  55. },
  56. },
  57. lineData: {
  58. type: Array,
  59. default: () => [200, 350, 400, 500, 600, 700, 800, 900, 1200],
  60. },
  61. lineName: {
  62. type: String,
  63. default: "损失电量",
  64. },
  65. // 单位
  66. units: {
  67. type: Array,
  68. default: () => ["(万KWh)", "(风速)"],
  69. },
  70. // 显示 legend
  71. showLegend: {
  72. type: Boolean,
  73. default: true,
  74. },
  75. // 颜色
  76. color: {
  77. type: Array,
  78. default: () => [
  79. "#323E6F",
  80. "#e17e23",
  81. "#ba3237",
  82. "#c531c7",
  83. "#ffffff",
  84. "#EDEB2F",
  85. ],
  86. },
  87. // 每页显示个数
  88. pageSize: {
  89. type: Number,
  90. default: 20,
  91. },
  92. },
  93. data() {
  94. return {
  95. id: "",
  96. chart: null,
  97. areaData: [],
  98. };
  99. },
  100. computed: {
  101. legend() {
  102. return this.bardata.legend;
  103. },
  104. end() {
  105. var result = 20;
  106. if (this.areaData) {
  107. result = parseInt((this.pageSize / this.areaData.length) * 100);
  108. }
  109. return result;
  110. },
  111. },
  112. methods: {
  113. initChart() {
  114. let chart = echarts.init(this.$el);
  115. let option = {
  116. color: this.color,
  117. grid: {
  118. left: 40,
  119. right: 16,
  120. bottom: 16,
  121. top: 35,
  122. containLabel: true,
  123. },
  124. legend: {
  125. show: this.showLegend,
  126. data: this.bardata.legend,
  127. top: 0,
  128. right: 56,
  129. icon: "ract",
  130. itemWidth: 8,
  131. itemHeight: 8,
  132. inactiveColor:
  133. this.$store.state.themeName === "dark"
  134. ? partten.getColor("gray")
  135. : "#000",
  136. textStyle: {
  137. color:
  138. this.$store.state.themeName === "dark"
  139. ? partten.getColor("grayl")
  140. : "#000",
  141. fontSize: 12,
  142. },
  143. },
  144. tooltip: {
  145. trigger: "axis",
  146. backgroundColor:
  147. this.$store.state.themeName === "dark"
  148. ? "rgba(0,0,0,0.4)"
  149. : "rgba(255,255,255,0.5)",
  150. borderColor:
  151. this.$store.state.themeName === "dark"
  152. ? partten.getColor("gray")
  153. : "#000",
  154. textStyle: {
  155. color: this.$store.state.themeName === "dark" ? "#fff" : "#000",
  156. fontSize: util.vh(16),
  157. },
  158. },
  159. // dataZoom: [
  160. // {
  161. // type: "inside",
  162. // start: 0,
  163. // end: this.end,
  164. // yAxisIndex: [0],
  165. // },
  166. // {
  167. // start: 0,
  168. // end: this.end,
  169. // bottom: 40,
  170. // yAxisIndex: [0],
  171. // backgroundColor: "transparent",
  172. // // handleIcon: "path://M306.1,413c0,2.2-1.8,4-4,4h-59.8c-2.2,0-4-1.8-4-4V200.8c0-2.2,1.8-4,4-4h59.8c2.2,0,4,1.8,4,4V413z",
  173. // handleStyle: {
  174. // color: this.$store.state.themeName === "dark"
  175. // ? partten.getColor("green")
  176. // : partten.getColor("blue"),
  177. // },
  178. // moveHandleSize: 0,
  179. // // dataBackground: {
  180. // // lineStyle: {
  181. // // color: partten.getColor("gray"),
  182. // // },
  183. // // areaStyle: {
  184. // // color: partten.getColor("gray"),
  185. // // },
  186. // // },
  187. // // selectedDataBackground: {
  188. // // lineStyle: {
  189. // // color: partten.getColor("yellow"),
  190. // // },
  191. // // areaStyle: {
  192. // // color: partten.getColor("yellow"),
  193. // // },
  194. // // },
  195. // fillerColor: "transparent",
  196. // textStyle: {
  197. // color: this.$store.state.themeName === "dark"
  198. // ? partten.getColor("grayl")
  199. // : "#000",
  200. // },
  201. // borderColor: this.$store.state.themeName === "dark"
  202. // ? partten.getColor("gray")
  203. // : "#000",
  204. // brushSelect: false,
  205. // },
  206. // ],
  207. yAxis: [
  208. {
  209. type: "category",
  210. axisLabel: {
  211. color:
  212. this.$store.state.themeName === "dark"
  213. ? partten.getColor("gray")
  214. : "#000",
  215. },
  216. inverse: true,
  217. // minInterval: 10,
  218. // maxInterval: 10,
  219. axisLine: {
  220. show: false,
  221. },
  222. axisTick: {
  223. show: false,
  224. },
  225. data: this.areaData,
  226. },
  227. ],
  228. xAxis: [
  229. {
  230. type: "value",
  231. axisLabel: {
  232. color:
  233. this.$store.state.themeName === "dark"
  234. ? partten.getColor("gray")
  235. : "#000",
  236. },
  237. axisLine: {
  238. show: false,
  239. type: "dashed",
  240. lineStyle: {
  241. color:
  242. this.$store.state.themeName === "dark"
  243. ? partten.getColor("gray")
  244. : "#000",
  245. },
  246. width: 15,
  247. },
  248. axisTick: {
  249. show: false,
  250. },
  251. splitLine: {
  252. lineStyle: {
  253. type: "dashed",
  254. dashOffset: 100,
  255. color:
  256. this.$store.state.themeName === "dark"
  257. ? "#5a6162"
  258. : "#000" + 80,
  259. },
  260. },
  261. },
  262. {
  263. type: "value",
  264. name: "",
  265. axisLabel: {
  266. show: false,
  267. // formatter: "{value}",
  268. // color: partten.getColor("gray"),
  269. },
  270. axisLine: {
  271. show: false,
  272. },
  273. axisTick: {
  274. show: false,
  275. },
  276. splitLine: {
  277. show: false,
  278. },
  279. },
  280. ],
  281. series: [],
  282. };
  283. if (this.bardata && this.bardata.legend)
  284. // bar data
  285. for (var i = 0; i < this.bardata.legend.length; i++) {
  286. option.series.push({
  287. name: this.bardata.legend[i],
  288. type: "bar",
  289. stack: "总量",
  290. barWidth: 10,
  291. label: {
  292. show: false,
  293. position: "insideRight",
  294. },
  295. data: this.bardata.data[i],
  296. });
  297. }
  298. // line data
  299. if (this.lineData.length > 0) {
  300. option.series.push({
  301. name: this.lineName,
  302. type: "line",
  303. data: this.lineData,
  304. smooth: false, //平滑展示
  305. xAxisIndex: 0,
  306. lineStyle: {
  307. color:
  308. this.$store.state.themeName === "dark"
  309. ? partten.getColor("green")
  310. : partten.getColor("blue"),
  311. },
  312. itemStyle: {
  313. color:
  314. this.$store.state.themeName === "dark"
  315. ? partten.getColor("green")
  316. : partten.getColor("blue"),
  317. },
  318. });
  319. }
  320. chart.setOption(option);
  321. },
  322. },
  323. created() {
  324. this.id = "pie-chart-" + util.newGUID();
  325. if (this.bardata.area && this.bardata.area.length < this.pageSize) {
  326. this.areaData = this.bardata.area;
  327. for (let i = this.bardata.area.length; i <= this.pageSize; i++) {
  328. this.areaData.push("");
  329. }
  330. }
  331. },
  332. mounted() {
  333. this.$nextTick(() => {
  334. this.$el.style.width = this.width;
  335. this.$el.style.height = this.height;
  336. // console.log(this.height);
  337. this.initChart();
  338. });
  339. },
  340. updated() {
  341. this.$nextTick(() => {
  342. this.initChart();
  343. });
  344. },
  345. beforeUpdate() {
  346. this.areaData = this.bardata.area;
  347. },
  348. // beforeUpdate() {
  349. // this.areaData = this.bardata.area;
  350. // },
  351. watch: {
  352. bardata(val) {
  353. if (val.area && val.area.length < this.pageSize) {
  354. this.areaData = val.area;
  355. for (let i = val.area.length; i <= this.pageSize; i++) {
  356. this.areaData.push("");
  357. }
  358. }
  359. },
  360. "$store.state.themeName"() {
  361. this.$nextTick(() => {
  362. this.$el.style.width = this.width;
  363. this.$el.style.height = this.height;
  364. this.areaData = this.bardata.area;
  365. this.initChart();
  366. });
  367. },
  368. height: {
  369. handler(val) {
  370. console.log(val);
  371. this.$nextTick(() => {
  372. this.$el.style.width = this.width;
  373. this.$el.style.height = this.height;
  374. this.areaData = this.bardata.area;
  375. this.initChart();
  376. });
  377. },
  378. immediate: true,
  379. },
  380. },
  381. };
  382. </script>
  383. <style lang="less">
  384. .chart {
  385. width: 100%;
  386. height: 100%;
  387. display: inline-block;
  388. }
  389. </style>