arrow-dash-line-chart.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  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: "multi-arrow-line-chart",
  10. componentName: "multi-arrow-line-chart",
  11. props: {
  12. width: {
  13. type: String,
  14. default: "100%",
  15. },
  16. height: {
  17. type: String,
  18. default: "13.889vh",
  19. },
  20. // 数据
  21. list: {
  22. type: Array,
  23. default: () => [
  24. {
  25. title: "功率",
  26. yAxisIndex: 0,
  27. value: [
  28. {
  29. text: "0m/s",
  30. value: 1,
  31. show: true,
  32. size: 12,
  33. route: -90,
  34. },
  35. {
  36. text: "2m/s",
  37. value: 2,
  38. show: true,
  39. size: 12,
  40. route: -90,
  41. },
  42. {
  43. text: "3m/s",
  44. value: 16,
  45. show: true,
  46. size: 12,
  47. route: -90,
  48. },
  49. {
  50. text: "4m/s",
  51. value: 3,
  52. show: true,
  53. size: 12,
  54. route: -90,
  55. },
  56. {
  57. text: "5m/s",
  58. value: 3,
  59. show: true,
  60. size: 12,
  61. route: -90,
  62. },
  63. {
  64. text: "6m/s",
  65. value: 31,
  66. show: true,
  67. size: 12,
  68. route: -90,
  69. },
  70. {
  71. text: "7m/s",
  72. value: 33,
  73. show: true,
  74. size: 12,
  75. route: -90,
  76. },
  77. {
  78. text: "8m/s",
  79. value: 43,
  80. show: true,
  81. size: 12,
  82. route: -90,
  83. },
  84. {
  85. text: "9m/s",
  86. value: 3,
  87. show: true,
  88. size: 12,
  89. route: -90,
  90. },
  91. {
  92. text: "10m/s",
  93. value: 3,
  94. show: true,
  95. size: 12,
  96. route: -90,
  97. },
  98. {
  99. text: "11m/s",
  100. value: 31,
  101. show: true,
  102. size: 12,
  103. route: -90,
  104. },
  105. {
  106. text: "12m/s",
  107. value: 3,
  108. show: true,
  109. size: 12,
  110. route: -90,
  111. },
  112. {
  113. text: "13m/s",
  114. value: 3,
  115. show: true,
  116. size: 12,
  117. route: -90,
  118. },
  119. ],
  120. },
  121. ],
  122. },
  123. // 单位
  124. units: {
  125. type: Array,
  126. default: () => ["()"],
  127. },
  128. showLegend: {
  129. type: Boolean,
  130. default: true,
  131. },
  132. },
  133. data() {
  134. return {
  135. id: "",
  136. chart: null,
  137. color: ["#606769"],
  138. };
  139. },
  140. computed: {
  141. legend() {
  142. return this.list.map((t) => {
  143. return t.title;
  144. });
  145. },
  146. xdata() {
  147. return this.list[0].value.map((t) => {
  148. return t.text;
  149. });
  150. },
  151. yAxis() {
  152. let result = [];
  153. this.units.forEach((value, index) => {
  154. result.push({
  155. type: "value",
  156. name: value,
  157. axisLabel: {
  158. formatter: "{value}",
  159. fontSize: util.vh(14),
  160. },
  161. //分格线
  162. splitLine: {
  163. lineStyle: {
  164. color: partten.getColor("gray") + 55,
  165. type: "dashed",
  166. },
  167. },
  168. });
  169. });
  170. return result;
  171. },
  172. series() {
  173. let result = [];
  174. this.list.forEach((value, index) => {
  175. var data = value.value.map((t) => {
  176. return t.value;
  177. });
  178. var arrowArr = [];
  179. data.forEach((dvalue, dindex) => {
  180. var item = dvalue;
  181. if (value.value[dindex].show) {
  182. arrowArr.push({
  183. symbol: "arrow",
  184. symbolSize: value.value[dindex].size,
  185. symbolRotate: value.value[dindex].route,
  186. value: item,
  187. });
  188. } else {
  189. arrowArr.push({ symbol: "none", value: item });
  190. }
  191. });
  192. result.push({
  193. name: value.title,
  194. type: "line",
  195. smooth: true,
  196. zlevel: index,
  197. lineStyle: {
  198. type: "dotted", //dashed
  199. },
  200. yAxisIndex: value.yAxisIndex,
  201. data: arrowArr,
  202. });
  203. });
  204. return result;
  205. },
  206. },
  207. methods: {
  208. initChart() {
  209. const chart = echarts.init(this.$el);
  210. let option = {
  211. color: this.color,
  212. tooltip: {
  213. trigger: "axis",
  214. backgroundColor: "rgba(0,0,0,0.4)",
  215. borderColor: partten.getColor("gray"),
  216. textStyle: {
  217. color: "#fff",
  218. fontSize: util.vh(16),
  219. },
  220. },
  221. legend: {
  222. show: this.showLegend,
  223. data: this.legend,
  224. right: 56,
  225. icon: "circle",
  226. itemWidth: 6,
  227. inactiveColor: partten.getColor("gray"),
  228. textStyle: {
  229. color: partten.getColor("grayl"),
  230. fontsize: 12,
  231. },
  232. },
  233. grid: {
  234. top: util.vh(32),
  235. left: util.vh(40),
  236. right: util.vh(40),
  237. bottom: util.vh(24),
  238. },
  239. xAxis: [
  240. {
  241. type: "category",
  242. boundaryGap: false,
  243. axisLabel: {
  244. formatter: "{value}",
  245. fontSize: util.vh(14),
  246. textStyle: {
  247. color: partten.getColor("gray"),
  248. },
  249. },
  250. data: this.xdata,
  251. },
  252. ],
  253. yAxis: this.yAxis,
  254. series: this.series,
  255. };
  256. chart.clear();
  257. chart.setOption(option);
  258. this.resize = function() {
  259. chart.resize();
  260. };
  261. window.addEventListener("resize", this.resize);
  262. },
  263. },
  264. created() {
  265. this.id = "pie-chart-" + util.newGUID();
  266. },
  267. mounted() {
  268. this.$nextTick(() => {
  269. this.$el.style.width = this.width;
  270. this.$el.style.height = this.height;
  271. this.initChart();
  272. });
  273. },
  274. updated() {
  275. this.$nextTick(() => {
  276. this.initChart();
  277. });
  278. },
  279. unmounted() {
  280. window.removeEventListener("resize", this.resize);
  281. },
  282. };
  283. </script>
  284. <style lang="less">
  285. .chart {
  286. width: 100%;
  287. height: 100%;
  288. display: inline-block;
  289. }
  290. </style>