vertival-bar-line-chart.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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: ["风场1", "风场2", "风场3", "风场4", "风场5", "风场6", "风场7", "风场8", "风场9"],
  26. legend: ["实际电量", "计划检修损失", "非计划检修损失", "限电损失", "受累损失", "性能损失"],
  27. data: [
  28. [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
  29. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  30. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  31. [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
  32. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  33. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  34. [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
  35. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  36. ],
  37. };
  38. },
  39. },
  40. lineData: {
  41. type: Array,
  42. // default: () => [200, 350, 400, 500, 600, 700, 800, 900, 1200],
  43. },
  44. // 单位
  45. units: {
  46. type: Array,
  47. default: () => ["", "风机健康状态数量"],
  48. },
  49. // 显示 legend
  50. showLegend: {
  51. type: Boolean,
  52. default: true,
  53. },
  54. // 颜色
  55. color: {
  56. type: Array,
  57. default: () => ["#05bb4c", "#4b55ae", "#e17e23", "#02BB4C", "#EDB32F", "#EDEB2F"],
  58. },
  59. },
  60. data() {
  61. return {
  62. id: "",
  63. chart: null,
  64. newbardata:null
  65. };
  66. },
  67. watch: {
  68. bardata: {
  69. handler(newValue, oldValue) {
  70. console.warn(newValue);
  71. this.newbardata = newValue;
  72. this.initChart();
  73. },
  74. deep: true,
  75. },
  76. "$store.state.themeName"() {
  77. this.initChart();
  78. },
  79. },
  80. computed: {
  81. legend() {
  82. return this.newbardata.legend;
  83. },
  84. },
  85. methods: {
  86. initChart() {
  87. let chart = echarts.init(this.$el);
  88. let option = {
  89. color: this.color,
  90. grid: {
  91. left: 16,
  92. right: 16,
  93. bottom: 0,
  94. top: 32,
  95. containLabel: true,
  96. },
  97. tooltip: {
  98. trigger: "axis",
  99. backgroundColor: this.$store.state.themeName === "dark" ? "rgba(0,0,0,0.4)" : "rgba(255,255,255,0.5)",
  100. borderColor: this.$store.state.themeName === "dark" ? partten.getColor("gray") : "#000",
  101. textStyle: {
  102. color: this.$store.state.themeName === "dark" ? "#fff" : "#000",
  103. fontSize: 14,
  104. },
  105. },
  106. legend: {
  107. show: this.showLegend,
  108. data: this.newbardata.legend,
  109. right: 120,
  110. icon: "ract",
  111. itemWidth: 8,
  112. itemHeight: 8,
  113. inactiveColor: this.$store.state.themeName === "dark" ? partten.getColor("gray") : "#000",
  114. textStyle: {
  115. color: this.$store.state.themeName === "dark" ? partten.getColor("grayl") : "#000",
  116. fontSize: 12,
  117. },
  118. },
  119. xAxis: [
  120. {
  121. type: "category",
  122. axisLabel: {
  123. color: this.$store.state.themeName === "dark" ? partten.getColor("gray") : "#000",
  124. },
  125. axisLine: {
  126. show: false,
  127. },
  128. axisTick: {
  129. show: false,
  130. },
  131. data: this.newbardata.area,
  132. },
  133. ],
  134. yAxis: [
  135. {
  136. type: "value",
  137. name: this.units[0],
  138. axisLabel: {
  139. formatter: "{value} ",
  140. color: this.$store.state.themeName === "dark" ? partten.getColor("gray") : "#000",
  141. },
  142. axisLine: {
  143. type: "dashed",
  144. lineStyle: {
  145. color: this.$store.state.themeName === "dark" ? partten.getColor("gray") : "#000",
  146. },
  147. width: 5,
  148. },
  149. axisTick: {
  150. show: false,
  151. },
  152. splitLine: {
  153. lineStyle: {
  154. type: "dashed",
  155. dashOffset: 10,
  156. color: this.$store.state.themeName === "dark" ? partten.getColor("gray") : "#000" + 80,
  157. },
  158. },
  159. },
  160. {
  161. type: "value",
  162. name: this.units[1],
  163. axisLabel: {
  164. formatter: "{value} ",
  165. color: this.$store.state.themeName === "dark" ? partten.getColor("gray") : "#000",
  166. align: "left",
  167. },
  168. axisLine: {
  169. show: false,
  170. },
  171. axisTick: {
  172. show: false,
  173. },
  174. splitLine: {
  175. show: false,
  176. },
  177. },
  178. ],
  179. series: [],
  180. };
  181. // line data
  182. // if (this.lineData.length > 0) {
  183. // option.series.push({
  184. // name: this.units[0],
  185. // type: "line",
  186. // data: this.lineData,
  187. // smooth: false, //平滑展示
  188. // yAxisIndex: 0,
  189. // lineStyle: {
  190. // // color: partten.getColor("green"),
  191. // color: "#323E6F",
  192. // },
  193. // itemStyle: {
  194. // // color: partten.getColor("green"),
  195. // color: "#323E6F",
  196. // },
  197. // });
  198. // }
  199. // bar data
  200. for (var i = 0; i < this.newbardata.legend.length; i++) {
  201. option.series.push({
  202. name: this.newbardata.legend[i],
  203. type: "bar",
  204. stack: "总量",
  205. yAxisIndex: 1,
  206. barWidth: "10%",
  207. label: {
  208. show: false,
  209. position: "insideRight",
  210. },
  211. data: this.newbardata.data[i],
  212. });
  213. }
  214. chart.setOption(option);
  215. },
  216. },
  217. created() {
  218. this.id = "pie-chart-" + util.newGUID();
  219. this.newbardata = this.bardata
  220. },
  221. mounted() {
  222. this.$nextTick(() => {
  223. this.$el.style.width = this.width;
  224. this.$el.style.height = this.height;
  225. this.initChart();
  226. });
  227. },
  228. updated() {
  229. this.$nextTick(() => {
  230. this.initChart();
  231. });
  232. },
  233. };
  234. </script>
  235. <style lang="less">
  236. .chart {
  237. width: 100%;
  238. height: 100%;
  239. display: inline-block;
  240. }
  241. </style>