dual-pie-chart.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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 { left } from "@antv/x6/lib/registry/port-layout/line";
  9. export default {
  10. name: "dsah-pie",
  11. componentName: "dsah-pie",
  12. props: {
  13. width: {
  14. type: String,
  15. default: "100%",
  16. },
  17. height: {
  18. type: String,
  19. default: "18.519vh",
  20. },
  21. paddingWidth: {
  22. type: String,
  23. default: "30%",
  24. },
  25. // 内部饼图数据
  26. innerData: {
  27. type: Array,
  28. default: () => [
  29. {
  30. value: 700,
  31. unit: "个",
  32. name: "行业大类1",
  33. },
  34. {
  35. value: 679,
  36. unit: "个",
  37. name: "行业大类2",
  38. },
  39. {
  40. value: 1548,
  41. unit: "个",
  42. name: "行业大类3",
  43. },
  44. ],
  45. },
  46. // 外部饼图数据
  47. outerData: {
  48. type: Array,
  49. default: () => [],
  50. },
  51. // 颜色
  52. color: {
  53. type: String,
  54. default: "green",
  55. },
  56. showLegend: {
  57. type: Boolean,
  58. default: true,
  59. },
  60. },
  61. data() {
  62. return {
  63. id: "",
  64. chart: null,
  65. };
  66. },
  67. computed: {},
  68. methods: {
  69. initChart() {
  70. let that = this;
  71. let legend1 = this.innerData.map((v) => v.name);
  72. let legend2 = this.outerData.map((v) => v.name);
  73. let legendData = [...legend1, ...legend2];
  74. let option = {
  75. color: [
  76. "#e17e23",
  77. "#ba3237",
  78. "#c531c7",
  79. "#4b55ae",
  80. "#ccf0d3",
  81. "#05bb4c",
  82. ],
  83. tooltip: {
  84. trigger: "item",
  85. backgroundColor:
  86. this.$store.state.themeName === "dark"
  87. ? "rgba(0,0,0,0.4)"
  88. : "rgba(255,255,255,0.5)",
  89. borderColor:
  90. this.$store.state.themeName === "dark"
  91. ? partten.getColor("gray")
  92. : "#000",
  93. textStyle: {
  94. color: this.$store.state.themeName === "dark" ? "#fff" : "#000",
  95. fontSize: util.vh(16),
  96. },
  97. },
  98. grid: {
  99. top: 32,
  100. left: 60,
  101. right: 40,
  102. bottom: 24,
  103. },
  104. legend: {
  105. show: this.showLegend,
  106. orient: "vertical", //纵向图例
  107. right: "0",
  108. bottom: 32,
  109. itemWidth: 15,
  110. itemHeight: 15,
  111. formatter: (name) => {
  112. if (that.innerData.length) {
  113. const item = that.innerData.filter(
  114. (item) => item.name === name
  115. )[0];
  116. return `{name|${name}:}{value| ${item.value}}`;
  117. }
  118. },
  119. //icon: 'circle',
  120. itemGap: 12, //图例item间距
  121. textStyle: {
  122. color:
  123. this.$store.state.themeName === "dark"
  124. ? partten.getColor("gray")
  125. : "#000",
  126. fontSize: util.vh(14),
  127. rich: {
  128. name: {
  129. color:
  130. this.$store.state.themeName === "dark"
  131. ? partten.getColor("gray")
  132. : "#000",
  133. fontSize: 12,
  134. },
  135. value: {
  136. color:
  137. this.$store.state.themeName === "dark"
  138. ? partten.getColor("grayl")
  139. : "#000",
  140. fontSize: 12,
  141. },
  142. },
  143. },
  144. data: legend1,
  145. },
  146. series: [
  147. {
  148. name: "",
  149. type: "pie",
  150. center: [this.paddingWidth, "50%"],
  151. radius: [0, "35%"],
  152. itemStyle: {
  153. normal: {},
  154. },
  155. label: {
  156. normal: {
  157. show: false,
  158. },
  159. },
  160. labelLine: {
  161. normal: {
  162. show: false,
  163. },
  164. },
  165. data: this.innerData,
  166. },
  167. {
  168. name: "",
  169. type: "pie",
  170. center: [this.paddingWidth, "50%"],
  171. radius: ["55%", "95%"],
  172. data: this.outerData,
  173. labelLine: {
  174. normal: {
  175. // length: 40,
  176. // length2: 120,
  177. lineStyle: {
  178. color:
  179. this.$store.state.themeName === "dark" ? "#fff" : "#000",
  180. fontSize: util.vh(14),
  181. },
  182. },
  183. },
  184. itemStyle: {
  185. normal: {
  186. borderWidth:
  187. this.$store.state.themeName === "dark"
  188. ? util.vh(14)
  189. : util.vh(8),
  190. borderColor: "#071812",
  191. },
  192. },
  193. label: {
  194. normal: {
  195. formatter: (params) => {
  196. return "{percent|" + params.percent.toFixed(2) + "%}";
  197. },
  198. padding: [0, 0, 0, 0],
  199. rich: {
  200. color:
  201. this.$store.state.themeName === "dark" ? "#fff" : "#000",
  202. percent: {
  203. fontSize: util.vh(14),
  204. color:
  205. this.$store.state.themeName === "dark"
  206. ? "#FFFFFF"
  207. : "#000000",
  208. },
  209. },
  210. },
  211. },
  212. },
  213. ],
  214. };
  215. this.chart.setOption(option);
  216. },
  217. },
  218. created() {
  219. this.id = "pie-chart-" + util.newGUID();
  220. },
  221. mounted() {
  222. this.$el.style.width = this.width;
  223. this.$el.style.height = this.height;
  224. this.chart = echarts.init(this.$el);
  225. this.initChart();
  226. },
  227. updated() {
  228. this.initChart();
  229. },
  230. watch: {
  231. "$store.state.themeName"() {
  232. this.initChart();
  233. },
  234. },
  235. };
  236. </script>
  237. <style lang="less" scoped>
  238. .chart {
  239. width: 100%;
  240. height: 100%;
  241. display: block;
  242. margin: auto;
  243. }
  244. </style>