pieChart.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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: "double-line-chart",
  10. componentName: "double-line-chart",
  11. props: {
  12. width: {
  13. type: String,
  14. default: "100%",
  15. },
  16. height: {
  17. type: String,
  18. default: "13.889vh",
  19. },
  20. // 传入数据
  21. lossPower: {
  22. type: Array,
  23. default: () => [],
  24. },
  25. // 单位
  26. unit: {
  27. type: String,
  28. default: "",
  29. },
  30. showLable: {
  31. type: Boolean,
  32. default: true,
  33. },
  34. showLegend: {
  35. type: Boolean,
  36. default: false,
  37. },
  38. // 颜色
  39. color: {
  40. type: Array,
  41. default: () => [
  42. "#005bd9",
  43. "#019f2e",
  44. "#db6200",
  45. "#a10f0f",
  46. "#850894",
  47. "#9fa0a2",
  48. ],
  49. },
  50. },
  51. data() {
  52. return {
  53. id: "",
  54. chart: null,
  55. // color: ["#05bb4c", "#f8de5b", "#4b55ae", "#fa8c16", "#1DA0D7", "#DD5044"],
  56. newlist: null,
  57. };
  58. },
  59. watch: {
  60. list: {
  61. handler(newValue, oldValue) {
  62. this.newlist = newValue;
  63. this.$nextTick(() => {
  64. this.newlist = this.list;
  65. this.initChart();
  66. });
  67. },
  68. deep: true,
  69. },
  70. "$store.state.themeName"() {
  71. this.initChart();
  72. },
  73. },
  74. computed: {
  75. colorValue() {
  76. return partten.getColor(this.color);
  77. },
  78. datas() {
  79. return this.newlist.map((t) => {
  80. return t.value;
  81. });
  82. },
  83. legend() {
  84. if (this.newlist) {
  85. return this.newlist.map((t) => {
  86. return t.title;
  87. });
  88. } else {
  89. return [];
  90. }
  91. },
  92. xdata() {
  93. return [];
  94. // return this.newlist[0]?.value.map((t) => {
  95. // return t.text;
  96. // });
  97. },
  98. series() {
  99. let result = [];
  100. this.list.forEach((value, index) => {
  101. result.push({
  102. name: value.name || value.title,
  103. type: "line",
  104. // smooth: value.smooth,
  105. showSymbol: false,
  106. zlevel: index,
  107. lineStyle: {
  108. normal: {
  109. color: this.color[index],
  110. width: 1,
  111. },
  112. },
  113. yAxisIndex: value.yAxisIndex || 0,
  114. data: value.value.map((t) => {
  115. return t.value;
  116. }),
  117. });
  118. });
  119. return result;
  120. },
  121. yAxis() {
  122. let result = [];
  123. result.push({
  124. type: "value",
  125. name: this.unit,
  126. axisLabel: {
  127. formatter: "{value}",
  128. fontSize: util.vh(14),
  129. },
  130. boundaryGap: false,
  131. //分格线
  132. splitLine: {
  133. show: false,
  134. },
  135. });
  136. return result;
  137. },
  138. },
  139. methods: {
  140. resize() {},
  141. initChart() {
  142. let that = this;
  143. const chart = echarts.init(this.$el);
  144. let option = {
  145. color: this.color,
  146. legend: {
  147. type: "scroll",
  148. orient: "vertical",
  149. right: '8%',
  150. top: "middle",
  151. itemWidth: 8,
  152. itemHeight: 8,
  153. textStyle: {
  154. color: partten.getColor("grayl"),
  155. fontSize: 12,
  156. },
  157. formatter(params) {
  158. return (
  159. params +
  160. " " +
  161. that.lossPower.find((val) => val.name === params)?.value
  162. );
  163. },
  164. },
  165. radar: [
  166. {
  167. indicator: [{ text: "" }],
  168. center: ["35%", "50%"],
  169. radius: [0, 79],
  170. startAngle: 60,
  171. splitNumber: 5,
  172. shape: "circle",
  173. name: {
  174. formatter: "",
  175. textStyle: {
  176. color: "#0000FF",
  177. },
  178. },
  179. splitArea: {
  180. areaStyle: {
  181. color: "rgba(0, 0, 0, 0)",
  182. },
  183. },
  184. axisLine: {
  185. lineStyle: {
  186. color: "rgba(0, 0, 0, 0)",
  187. },
  188. },
  189. splitLine: {
  190. lineStyle: {
  191. color: "#0a389c",
  192. shadowColor: "#0a389c",
  193. shadowBlur: 10,
  194. },
  195. },
  196. },
  197. ],
  198. tooltip: {
  199. trigger: "item",
  200. },
  201. toolbox: {
  202. show: true,
  203. },
  204. series: [
  205. {
  206. name: "",
  207. type: "pie",
  208. radius: [0, 80],
  209. center: ["35%", "50%"],
  210. roseType: "area",
  211. label: {
  212. normal: {
  213. color: "#fff",
  214. formatter: "{d}%",
  215. },
  216. },
  217. labelLine: {
  218. length: 0,
  219. length2: 10,
  220. maxSurfaceAngle: 80,
  221. },
  222. data: this.lossPower,
  223. },
  224. ],
  225. };
  226. chart.clear();
  227. chart.setOption(option);
  228. this.resize = function () {
  229. chart.resize();
  230. };
  231. window.addEventListener("resize", this.resize);
  232. },
  233. },
  234. created() {
  235. this.$nextTick(() => {
  236. this.id = "pie-chart-" + util.newGUID();
  237. });
  238. this.newlist = this.list;
  239. },
  240. mounted() {
  241. this.$nextTick(() => {
  242. this.$el.style.width = this.width;
  243. this.$el.style.height = this.height;
  244. this.initChart();
  245. });
  246. },
  247. updated() {
  248. this.$nextTick(() => {
  249. this.initChart();
  250. });
  251. },
  252. unmounted() {
  253. window.removeEventListener("resize", this.resize);
  254. },
  255. };
  256. </script>
  257. <style lang="less">
  258. .chart {
  259. width: 100%;
  260. height: 100%;
  261. display: inline-block;
  262. }
  263. </style>