direction-radar-chart.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  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. series: {
  29. type: Object,
  30. default: () => {},
  31. },
  32. },
  33. data() {
  34. return {
  35. id: "",
  36. chart: null,
  37. Data: [],
  38. label: [],
  39. indicator: [
  40. {
  41. name: "N",
  42. max: 100,
  43. },
  44. {
  45. name: "NNE",
  46. max: 100,
  47. },
  48. {
  49. name: "NE",
  50. max: 100,
  51. },
  52. {
  53. name: "ENE",
  54. max: 100,
  55. },
  56. {
  57. name: "E",
  58. max: 100,
  59. },
  60. {
  61. name: "ESE",
  62. max: 100,
  63. },
  64. {
  65. name: "SE",
  66. max: 100,
  67. },
  68. {
  69. name: "SSE",
  70. max: 100,
  71. },
  72. {
  73. name: "S",
  74. max: 100,
  75. },
  76. {
  77. name: "SSW",
  78. max: 100,
  79. },
  80. {
  81. name: "SW",
  82. max: 100,
  83. },
  84. {
  85. name: "WSW",
  86. max: 100,
  87. },
  88. {
  89. name: "W",
  90. max: 100,
  91. },
  92. {
  93. name: "WNW",
  94. max: 100,
  95. },
  96. {
  97. name: "NW",
  98. max: 100,
  99. },
  100. {
  101. name: "NNW",
  102. max: 100,
  103. },
  104. ],
  105. };
  106. },
  107. methods: {
  108. initChart() {
  109. console.log(this.series);
  110. let nameList =
  111. this.series.name && this.series.name.length ? this.series.name : [];
  112. let option = {
  113. grid: {
  114. left: 40,
  115. right: 40,
  116. bottom: "40%",
  117. top: "40%",
  118. containLabel: false,
  119. },
  120. legend: {
  121. show: false,
  122. },
  123. polar: {},
  124. tooltip: {
  125. trigger: "axis",
  126. axisPointer: {
  127. type: "cross",
  128. },
  129. },
  130. angleAxis: {
  131. type: "value",
  132. startAngle: 90,
  133. min: 0, //最小刻度
  134. max: 360, //最大刻度
  135. interval: 360 / nameList.length, //间隔刻度 16方位间隔22.5,可改8方位
  136. axisLabel: {
  137. show: false,
  138. // formatter: function (value, index) {
  139. // return nameList.reverse()[index] || "";
  140. // },
  141. },
  142. },
  143. radiusAxis: {},
  144. // series: [
  145. // {
  146. // // coordinateSystem: "polar",
  147. // name: "line",
  148. // type: "radar",
  149. // data: this.series.data
  150. // ? [{ name: "a", value: this.series.data.map((i) => i[0]) }]
  151. // : [],
  152. // areaStyle: {
  153. // color: "rgba(227, 127, 127, 1)",
  154. // },
  155. // },
  156. // ],
  157. series: [
  158. {
  159. type: "radar",
  160. tooltip: {
  161. trigger: "item",
  162. },
  163. itemStyle: {
  164. //此属性的颜色和下面areaStyle属性的颜色都设置成相同色即可实现
  165. color: "#087636",
  166. borderColor: "#087636",
  167. },
  168. areaStyle: {
  169. color: "#087636",
  170. },
  171. data: [
  172. {
  173. value: this.series.data
  174. ? this.series.data.map((i) => i[0])
  175. : "",
  176. name: "风向频率",
  177. },
  178. ],
  179. },
  180. ],
  181. radar: [
  182. {
  183. indicator: this.indicator,
  184. center: ["50%", "50%"],
  185. radius: "70%",
  186. splitLine: {
  187. //配置雷达图的每一圈的网格线颜色
  188. lineStyle: {
  189. color: "#262732",
  190. },
  191. },
  192. splitArea: {
  193. //配置雷达图的网格线背景
  194. show: false,
  195. },
  196. name: {
  197. //配置雷达图的每个指示器的名称颜色
  198. textStyle: {
  199. color: "#838D9E",
  200. },
  201. },
  202. axisLine: {
  203. //配置雷达图的射线样式颜色
  204. lineStyle: {
  205. color: "#262732",
  206. },
  207. },
  208. },
  209. ],
  210. // radar: [
  211. // // 最低层 80
  212. // {
  213. // radius: "70%",
  214. // center: ["50%", "50%"],
  215. // splitNumber: 1,
  216. // nameGap: "10",
  217. // name: {
  218. // textStyle: {
  219. // color: partten.getColor("gray") + 99,
  220. // fontSize: 12,
  221. // },
  222. // },
  223. // axisLine: {
  224. // lineStyle: {
  225. // color: partten.getColor("gray") + 40,
  226. // },
  227. // },
  228. // splitLine: {
  229. // lineStyle: {
  230. // width: 1,
  231. // color: partten.getColor("gray") + 40,
  232. // },
  233. // },
  234. // splitArea: {
  235. // areaStyle: {
  236. // color: "transparent",
  237. // },
  238. // },
  239. // indicator: this.indicator,
  240. // },
  241. // // 次外层 70 - 80
  242. // {
  243. // radius: ["60%", "70%"],
  244. // center: ["50%", "50%"],
  245. // startAngle: 90,
  246. // splitNumber: 2,
  247. // name: {
  248. // show: false,
  249. // },
  250. // axisLine: {
  251. // lineStyle: {
  252. // color: partten.getColor("gray") + 40,
  253. // shadowBlur: 1,
  254. // shadowColor: "#fff",
  255. // shadowOffsetX: 0.5,
  256. // shadowOffsetY: 1,
  257. // },
  258. // },
  259. // splitLine: {
  260. // lineStyle: {
  261. // width: 1,
  262. // color: partten.getColor("gray") + 40,
  263. // shadowColor: "#fff",
  264. // shadowBlur: 0,
  265. // shadowOffsetX: 0.5,
  266. // shadowOffsetY: 0.5,
  267. // },
  268. // },
  269. // splitArea: {
  270. // areaStyle: {
  271. // color: "transparent",
  272. // },
  273. // },
  274. // indicator: this.indicator,
  275. // },
  276. // // 渐变层 40 - 70
  277. // {
  278. // radius: ["30%", "60%"],
  279. // center: ["50%", "50%"],
  280. // splitNumber: 1,
  281. // name: {
  282. // show: false,
  283. // },
  284. // axisLine: {
  285. // lineStyle: {
  286. // color: partten.getColor("gray") + 40,
  287. // },
  288. // },
  289. // splitLine: {
  290. // lineStyle: {
  291. // width: 1,
  292. // color: partten.getColor("gray"),
  293. // },
  294. // },
  295. // splitArea: {
  296. // areaStyle: {
  297. // shadowBlur: 4,
  298. // color: {
  299. // type: "radial",
  300. // x: 0.5,
  301. // y: 0.5,
  302. // r: 0.5,
  303. // colorStops: [
  304. // {
  305. // offset: 0.5,
  306. // color: "transparent", // 0% 处的颜色
  307. // },
  308. // {
  309. // offset: 1,
  310. // color:
  311. // this.$store.state.themeName === "dark"
  312. // ? partten.getColor("green")
  313. // : partten.getColor("deepblue") + 60, // 100% 处的颜色
  314. // },
  315. // ],
  316. // global: false, // 缺省为 false
  317. // },
  318. // },
  319. // },
  320. // indicator: this.indicator,
  321. // },
  322. // // 内层 0 - 40
  323. // {
  324. // radius: "30%",
  325. // center: ["50%", "50%"],
  326. // splitNumber: 1,
  327. // name: {
  328. // show: false,
  329. // },
  330. // axisLine: {
  331. // lineStyle: {
  332. // color: partten.getColor("gray") + 40,
  333. // },
  334. // },
  335. // splitLine: {
  336. // lineStyle: {
  337. // width: 1,
  338. // color: partten.getColor("gray"),
  339. // },
  340. // },
  341. // splitArea: {
  342. // areaStyle: {
  343. // shadowBlur: 4,
  344. // color: "transparent",
  345. // },
  346. // },
  347. // indicator: this.indicator,
  348. // },
  349. // ],
  350. // series: [
  351. // // 进度条
  352. // {
  353. // z: 1,
  354. // name: "内部(环形)进度条",
  355. // type: "gauge",
  356. // radius: "70%",
  357. // splitNumber: 5,
  358. // axisLine: {
  359. // lineStyle: {
  360. // color: [
  361. // ...(this.value.data
  362. // ? this.value.data.map((item) => {
  363. // return [
  364. // item.value / 360,
  365. // new echarts.graphic.LinearGradient(0, 0, 1, 0, [
  366. // {
  367. // offset: 0,
  368. // color:
  369. // this.$store.state.themeName === "dark"
  370. // ? partten.getColor(this.color) + 10
  371. // : partten.getColor("deepblue") + 10,
  372. // },
  373. // {
  374. // offset: 1,
  375. // color:
  376. // this.$store.state.themeName === "dark"
  377. // ? partten.getColor(this.color) + 99
  378. // : partten.getColor("deepblue") + 99,
  379. // },
  380. // ]),
  381. // ];
  382. // })
  383. // : [
  384. // 0,
  385. // new echarts.graphic.LinearGradient(0, 0, 1, 0, [
  386. // {
  387. // offset: 0,
  388. // color:
  389. // this.$store.state.themeName === "dark"
  390. // ? partten.getColor(this.color) + 10
  391. // : partten.getColor("deepblue") + 10,
  392. // },
  393. // {
  394. // offset: 1,
  395. // color:
  396. // this.$store.state.themeName === "dark"
  397. // ? partten.getColor(this.color) + 99
  398. // : partten.getColor("deepblue") + 99,
  399. // },
  400. // ]),
  401. // ]),
  402. // [1, "transparent"],
  403. // ],
  404. // width: 40,
  405. // },
  406. // },
  407. // startAngle: 90,
  408. // endAngle: 450,
  409. // clockwise: true,
  410. // axisLabel: {
  411. // show: false,
  412. // },
  413. // axisTick: {
  414. // show: false,
  415. // },
  416. // splitLine: {
  417. // show: false,
  418. // },
  419. // pointer: {
  420. // show: false,
  421. // },
  422. // },
  423. // // 指针
  424. // {
  425. // name: "指针",
  426. // type: "gauge",
  427. // z: 2,
  428. // min: 0,
  429. // max: 360,
  430. // radius: "100%",
  431. // startAngle: 90,
  432. // endAngle: 360 + 90,
  433. // clockwise: false,
  434. // axisLine: {
  435. // show: false,
  436. // },
  437. // tooltip: {
  438. // show: false,
  439. // },
  440. // axisLabel: {
  441. // show: false,
  442. // },
  443. // axisTick: {
  444. // show: false,
  445. // },
  446. // splitLine: {
  447. // show: false,
  448. // },
  449. // detail: {
  450. // show: false,
  451. // },
  452. // title: {
  453. // //标题
  454. // show: false,
  455. // },
  456. // data: this.value.data,
  457. // itemStyle: {
  458. // normal: {
  459. // color: "#fff",
  460. // },
  461. // },
  462. // pointer: {
  463. // show: true,
  464. // length: "70%",
  465. // radius: "0%",
  466. // width: util.vh(3), //指针粗细
  467. // offsetCenter: ["0%", "0%"],
  468. // },
  469. // animationDuration: 1000,
  470. // },
  471. // ],
  472. };
  473. console.log(option);
  474. this.chart.setOption(option);
  475. },
  476. },
  477. created() {
  478. this.id = "pie-chart-" + util.newGUID();
  479. },
  480. mounted() {
  481. this.$nextTick(() => {
  482. this.$el.style.width = this.width;
  483. this.$el.style.height = this.height;
  484. this.chart = echarts.init(this.$el);
  485. this.initChart();
  486. });
  487. },
  488. updated() {
  489. this.initChart();
  490. },
  491. watch: {
  492. "$store.state.themeName"() {
  493. this.initChart();
  494. },
  495. },
  496. };
  497. </script>
  498. <style lang="less" scoped>
  499. .chart {
  500. width: 100%;
  501. height: 100%;
  502. display: block;
  503. margin: auto;
  504. }
  505. </style>