dual-pie-chart.vue 5.9 KB

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