dual-pie-chart.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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: this.$store.state.themeName === "dark"
  86. ? "rgba(0,0,0,0.4)"
  87. : "rgba(255,255,255,0.5)",
  88. borderColor: this.$store.state.themeName === "dark"
  89. ? partten.getColor("gray")
  90. : "#000",
  91. textStyle: {
  92. color: "#fff",
  93. fontSize: util.vh(16),
  94. },
  95. },
  96. grid: {
  97. top: 32,
  98. left: 60,
  99. right: 40,
  100. bottom: 24,
  101. },
  102. // legend: {
  103. // show: this.showLegend,
  104. // orient: "vertical", //纵向图例
  105. // right: "16",
  106. // bottom: 32,
  107. // itemWidth: 15,
  108. // itemHeight: 15,
  109. // formatter: (name) => {
  110. // if (that.innerData.length) {
  111. // const item = that.innerData.filter((item) => item.name === name)[0];
  112. // return `{name|${name}:}{value| ${item.value}}`;
  113. // }
  114. // },
  115. // //icon: 'circle',
  116. // itemGap: 12, //图例item间距
  117. // textStyle: {
  118. // color: this.$store.state.themeName === "dark"
  119. // ? partten.getColor("gray")
  120. // : "#000",
  121. // fontSize: util.vh(14),
  122. // rich: {
  123. // name: {
  124. // color: this.$store.state.themeName === "dark"
  125. // ? partten.getColor("gray")
  126. // : "#000",
  127. // fontSize: 12,
  128. // },
  129. // value: {
  130. // color: this.$store.state.themeName === "dark"
  131. // ? partten.getColor("grayl")
  132. // : "#000",
  133. // fontSize: 12,
  134. // },
  135. // },
  136. // },
  137. // data: legend1,
  138. // },
  139. series: [
  140. {
  141. name: "",
  142. type: "pie",
  143. center: ["50%", "50%"],
  144. radius: [0, "35%"],
  145. itemStyle: {
  146. normal: {},
  147. },
  148. label: {
  149. normal: {
  150. show: false,
  151. },
  152. },
  153. labelLine: {
  154. normal: {
  155. show: false,
  156. },
  157. },
  158. data: this.innerData,
  159. },
  160. {
  161. name: "",
  162. type: "pie",
  163. center: ["50%", "50%"],
  164. radius: ["55%", "95%"],
  165. data: this.outerData,
  166. labelLine: {
  167. normal: {
  168. // length: 40,
  169. // length2: 120,
  170. lineStyle: {
  171. color: this.$store.state.themeName === "dark" ? "#fff" : "#000",
  172. fontSize: util.vh(14),
  173. },
  174. },
  175. },
  176. itemStyle: {
  177. normal: {
  178. borderWidth:util.vh(4),
  179. borderColor: "#071812",
  180. },
  181. },
  182. label: {
  183. normal: {
  184. formatter: (params) => {
  185. return "{percent|" + params.percent.toFixed(2) + "%}";
  186. },
  187. padding: [0, 0, 0, 0],
  188. rich: {
  189. color: this.$store.state.themeName === "dark" ? "#fff" : "#000",
  190. percent: {
  191. fontSize: util.vh(14),
  192. color: this.$store.state.themeName === "dark" ? "#FFFFFF" : "#000000" ,
  193. },
  194. },
  195. },
  196. },
  197. },
  198. ],
  199. };
  200. this.chart.setOption(option);
  201. },
  202. },
  203. created() {
  204. this.id = "pie-chart-" + util.newGUID();
  205. },
  206. mounted() {
  207. this.$el.style.width = this.width;
  208. this.$el.style.height = this.height;
  209. this.chart = echarts.init(this.$el);
  210. this.initChart();
  211. },
  212. updated() {
  213. this.initChart();
  214. },
  215. watch: {
  216. "$store.state.themeName"() {
  217. this.initChart();
  218. },
  219. },
  220. };
  221. </script>
  222. <style lang="less" scoped>
  223. .chart {
  224. width: 100%;
  225. height: 100%;
  226. display: block;
  227. margin: auto;
  228. }
  229. </style>