direction-radar-chart.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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. // 宽度 默认9.722vh
  13. width: {
  14. type: String,
  15. default: "100%",
  16. },
  17. // 高度 默认9.722vh
  18. height: {
  19. type: String,
  20. default: "7.4074vh",
  21. },
  22. // 标题
  23. title: {
  24. type: String,
  25. default: "标题",
  26. },
  27. // 值
  28. value: {
  29. type: Number,
  30. default: 90,
  31. },
  32. },
  33. data() {
  34. return {
  35. id: "",
  36. chart: null,
  37. indicator: [
  38. {
  39. name: "北",
  40. max: 100,
  41. },
  42. {
  43. name: "北北西",
  44. max: 100,
  45. },
  46. {
  47. name: "北西",
  48. max: 100,
  49. },
  50. {
  51. name: "西北西",
  52. max: 100,
  53. },
  54. {
  55. name: "西",
  56. max: 100,
  57. },
  58. {
  59. name: "西南西",
  60. max: 100,
  61. },
  62. {
  63. name: "南西",
  64. max: 100,
  65. },
  66. {
  67. name: "南南西",
  68. max: 100,
  69. },
  70. {
  71. name: "南",
  72. max: 100,
  73. },
  74. {
  75. name: "南南东",
  76. max: 100,
  77. },
  78. {
  79. name: "东南",
  80. max: 100,
  81. },
  82. {
  83. name: "东南东",
  84. max: 100,
  85. },
  86. {
  87. name: "东",
  88. max: 100,
  89. },
  90. {
  91. name: "东北东",
  92. max: 100,
  93. },
  94. {
  95. name: "北东",
  96. max: 100,
  97. },
  98. {
  99. name: "北北东",
  100. max: 100,
  101. },
  102. ],
  103. };
  104. },
  105. computed: {},
  106. methods: {
  107. initChart() {
  108. let option = {
  109. grid: {
  110. left: 40,
  111. right: 40,
  112. bottom: "40%",
  113. top: "40%",
  114. containLabel: false,
  115. },
  116. radar: [
  117. // 最低层 80
  118. {
  119. radius: "70%",
  120. center: ["50%", "50%"],
  121. splitNumber: 1,
  122. nameGap: "10",
  123. name: {
  124. textStyle: {
  125. color: partten.getColor("gray") + 99,
  126. fontSize: 12,
  127. },
  128. },
  129. axisLine: {
  130. lineStyle: {
  131. color: partten.getColor("gray") + 40,
  132. },
  133. },
  134. splitLine: {
  135. lineStyle: {
  136. width: 1,
  137. color: partten.getColor("gray") + 40,
  138. },
  139. },
  140. splitArea: {
  141. areaStyle: {
  142. color: "transparent",
  143. },
  144. },
  145. indicator: this.indicator,
  146. },
  147. // 次外层 70 - 80
  148. {
  149. radius: ["60%", "70%"],
  150. center: ["50%", "50%"],
  151. startAngle: 90,
  152. splitNumber: 2,
  153. name: {
  154. show: false,
  155. },
  156. axisLine: {
  157. lineStyle: {
  158. color: partten.getColor("gray") + 40,
  159. shadowBlur: 1,
  160. shadowColor: "#fff",
  161. shadowOffsetX: 0.5,
  162. shadowOffsetY: 1,
  163. },
  164. },
  165. splitLine: {
  166. lineStyle: {
  167. width: 1,
  168. color: partten.getColor("gray") + 40,
  169. shadowColor: "#fff",
  170. shadowBlur: 0,
  171. shadowOffsetX: 0.5,
  172. shadowOffsetY: 0.5,
  173. },
  174. },
  175. splitArea: {
  176. areaStyle: {
  177. color: "transparent",
  178. },
  179. },
  180. indicator: this.indicator,
  181. },
  182. // 渐变层 40 - 70
  183. {
  184. radius: ["30%", "60%"],
  185. center: ["50%", "50%"],
  186. splitNumber: 1,
  187. name: {
  188. show: false,
  189. },
  190. axisLine: {
  191. lineStyle: {
  192. color: partten.getColor("gray") + 40,
  193. },
  194. },
  195. splitLine: {
  196. lineStyle: {
  197. width: 1,
  198. color: partten.getColor("gray"),
  199. },
  200. },
  201. splitArea: {
  202. areaStyle: {
  203. shadowBlur: 4,
  204. color: {
  205. type: "radial",
  206. x: 0.5,
  207. y: 0.5,
  208. r: 0.5,
  209. colorStops: [
  210. {
  211. offset: 0.5,
  212. color: "transparent", // 0% 处的颜色
  213. },
  214. {
  215. offset: 1,
  216. color: this.$store.state.themeName === "dark" ? partten.getColor("green") : partten.getColor("deepblue") + 60, // 100% 处的颜色
  217. },
  218. ],
  219. global: false, // 缺省为 false
  220. },
  221. },
  222. },
  223. indicator: this.indicator,
  224. },
  225. // 内层 0 - 40
  226. {
  227. radius: "30%",
  228. center: ["50%", "50%"],
  229. splitNumber: 1,
  230. name: {
  231. show: false,
  232. },
  233. axisLine: {
  234. lineStyle: {
  235. color: partten.getColor("gray") + 40,
  236. },
  237. },
  238. splitLine: {
  239. lineStyle: {
  240. width: 1,
  241. color: partten.getColor("gray"),
  242. },
  243. },
  244. splitArea: {
  245. areaStyle: {
  246. shadowBlur: 4,
  247. color: "transparent",
  248. },
  249. },
  250. indicator: this.indicator,
  251. },
  252. ],
  253. series: [
  254. // 进度条
  255. {
  256. z: 1,
  257. name: "内部(环形)进度条",
  258. type: "gauge",
  259. radius: "70%",
  260. splitNumber: 5,
  261. axisLine: {
  262. lineStyle: {
  263. color: [
  264. [
  265. this.value / 360,
  266. new echarts.graphic.LinearGradient(0, 0, 1, 0, [
  267. {
  268. offset: 0,
  269. color: this.$store.state.themeName === "dark" ? partten.getColor(this.color) + 10 : partten.getColor("deepblue") + 10,
  270. },
  271. {
  272. offset: 1,
  273. color: this.$store.state.themeName === "dark" ? partten.getColor(this.color) + 99 : partten.getColor("deepblue") + 99,
  274. },
  275. ]),
  276. ],
  277. [1, "transparent"],
  278. ],
  279. width: 40,
  280. },
  281. },
  282. startAngle: 90,
  283. endAngle: 450,
  284. clockwise: true,
  285. axisLabel: {
  286. show: false,
  287. },
  288. axisTick: {
  289. show: false,
  290. },
  291. splitLine: {
  292. show: false,
  293. },
  294. pointer: {
  295. show: false,
  296. },
  297. },
  298. // 指针
  299. {
  300. name: "指针",
  301. type: "gauge",
  302. z: 2,
  303. min: 0,
  304. max: 360,
  305. radius: "100%",
  306. startAngle: 90,
  307. endAngle: 360 + 90,
  308. clockwise: false,
  309. axisLine: {
  310. show: false,
  311. },
  312. tooltip: {
  313. show: false,
  314. },
  315. axisLabel: {
  316. show: false,
  317. },
  318. axisTick: {
  319. show: false,
  320. },
  321. splitLine: {
  322. show: false,
  323. },
  324. detail: {
  325. show: false,
  326. },
  327. title: {
  328. //标题
  329. show: false,
  330. },
  331. data: [
  332. {
  333. value: this.value,
  334. },
  335. ],
  336. itemStyle: {
  337. normal: {
  338. color: "#fff",
  339. },
  340. },
  341. pointer: {
  342. show: true,
  343. length: "70%",
  344. radius: "0%",
  345. width: util.vh(3), //指针粗细
  346. offsetCenter: ["0%", "0%"],
  347. },
  348. animationDuration: 1000,
  349. },
  350. ],
  351. };
  352. this.chart.setOption(option);
  353. },
  354. },
  355. created() {
  356. this.id = "pie-chart-" + util.newGUID();
  357. },
  358. mounted() {
  359. this.$nextTick(() => {
  360. this.$el.style.width = this.width;
  361. this.$el.style.height = this.height;
  362. this.chart = echarts.init(this.$el);
  363. this.initChart();
  364. });
  365. },
  366. updated() {
  367. this.initChart();
  368. },
  369. watch: {
  370. "$store.state.themeName"() {
  371. this.initChart();
  372. },
  373. },
  374. };
  375. </script>
  376. <style lang="less" scoped>
  377. .chart {
  378. width: 100%;
  379. height: 100%;
  380. display: block;
  381. margin: auto;
  382. }
  383. </style>