windChartCom.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <template>
  2. <div :id="chartId" :style="{ width: width, height: height }"></div>
  3. </template>
  4. <script>
  5. import * as echarts from "echarts";
  6. import dayjs from "dayjs";
  7. import { h } from "vue";
  8. export default {
  9. name: "windChartCom",
  10. props: {
  11. width: {
  12. type: String,
  13. default: "100%",
  14. },
  15. height: {
  16. type: String,
  17. default: "70vh",
  18. },
  19. CurveTitle: {
  20. type: String,
  21. required: true,
  22. },
  23. chartShow: {
  24. type: Boolean,
  25. required: true,
  26. default: false,
  27. },
  28. windCurveValues: {
  29. type: Array,
  30. required: true,
  31. },
  32. chartId: {
  33. type: String,
  34. required: true,
  35. },
  36. ratio: {
  37. type: Number,
  38. default: 1,
  39. },
  40. unit: {
  41. type: String,
  42. default: "",
  43. },
  44. },
  45. async created() {},
  46. mounted() {
  47. this.$nextTick(() => {
  48. this.getChart();
  49. });
  50. },
  51. data() {
  52. return {
  53. emptyData: [],
  54. };
  55. },
  56. methods: {
  57. getChart() {
  58. var chartDom = document.getElementById(this.chartId);
  59. var myChart = echarts.init(chartDom); // 绘制图表
  60. var units = this.unit;
  61. var options = {
  62. tooltip: {
  63. trigger: "axis",
  64. textStyle: {
  65. fontSize: 16,
  66. fontFamily: "楷体",
  67. color: "white", //设置文字颜色
  68. fontWeight: "400",
  69. },
  70. backgroundColor: "rgba(5, 187, 76,0.35)",
  71. borderColor: "#05bb4c",
  72. formatter: function (params) {
  73. var htmlStr = `<div style='margin-bottom:5px'>${params[0].axisValue}</div>`;
  74. for (var i = 0; i < params.length; i++) {
  75. htmlStr += `<div style='margin-bottom:2px'>`;
  76. var param = params[i];
  77. var seriesName = param.seriesName; //图例名称
  78. var value = param.value; //y轴值
  79. var data = param.data; //单位判断code
  80. var mark = param.marker; //点
  81. var unit = `<span style='font-size:14px'>`;
  82. htmlStr += mark; //一个点
  83. htmlStr += `${seriesName} : ${
  84. value[1] != null ? value[1] + unit + ` ${units}</span>` : "--"
  85. }`; //圆点后面显示的文本
  86. htmlStr += "</div>";
  87. }
  88. return htmlStr;
  89. },
  90. },
  91. legend: {
  92. top: "0",
  93. right: "2%",
  94. textStyle: {
  95. fontSize: "12",
  96. color: "#A4A4A5",
  97. },
  98. orient: "vertical",
  99. icon: "roundRect",
  100. itemWidth: 5,
  101. itemHeight: 5,
  102. itemGap: 7,
  103. },
  104. xAxis: {
  105. type: "category",
  106. boundaryGap: false,
  107. axisTick: {
  108. alignWithLabel: true,
  109. },
  110. axisLabel: {
  111. show: true,
  112. textStyle: {
  113. color: "#606769",
  114. },
  115. },
  116. axisLine: {
  117. lineStyle: {
  118. color: "#606769", //x轴的颜色
  119. width: 1, //轴线的宽度
  120. },
  121. },
  122. // splitLine: { show: false },
  123. // data: this.windCurveValues.map((item) => item.dateTime),
  124. },
  125. yAxis: {
  126. name: this.unit,
  127. nameTextStyle: {
  128. fontSize: 16,
  129. align: "right",
  130. },
  131. type: "value",
  132. splitNumber: this.unit == "%" ? 2 : 3,
  133. max: this.unit == "%" ? "100" : null,
  134. splitLine: {
  135. show: false,
  136. textStyle: {
  137. color: "#606769",
  138. },
  139. },
  140. axisLine: {
  141. lineStyle: {
  142. color: "#606769", // y轴的颜色
  143. width: 1, //y轴线的宽度
  144. },
  145. },
  146. },
  147. grid: [
  148. {
  149. left: 80,
  150. right: 40,
  151. top: 30,
  152. bottom: 30,
  153. containLabel: true,
  154. },
  155. ],
  156. series: [
  157. {
  158. name: this.CurveTitle,
  159. type: "line",
  160. smooth: true,
  161. symbol: "none",
  162. areaStyle: {
  163. opacity: 0.7,
  164. color: new echarts.graphic.LinearGradient(2, 2, 0, 2, [
  165. {
  166. offset: 0,
  167. color: "rgba(53, 150, 235, 1)",
  168. },
  169. {
  170. offset: 1,
  171. color: "rgba(18, 32, 50, 0.2)",
  172. },
  173. ]),
  174. },
  175. lineStyle: {
  176. width: 1,
  177. },
  178. color: "#3596EB",
  179. data: this.windCurveValues.map((item) => {
  180. return [item.dateTime, item.value];
  181. }),
  182. },
  183. ],
  184. };
  185. myChart.setOption(options);
  186. },
  187. //处理数据
  188. getData(datas) {
  189. let data = [];
  190. //查询的测点没有数据情况
  191. if (datas && datas.length > 0) {
  192. datas.forEach((item) => {
  193. let result;
  194. if (item.value) {
  195. result = (Number(item.value) / this.ratio).toFixed(2);
  196. } else {
  197. result = item.value;
  198. }
  199. data.push(result);
  200. });
  201. return data;
  202. } else {
  203. return this.emptyData;
  204. }
  205. },
  206. },
  207. computed: {
  208. getTimeStanp() {
  209. // 当日0点时间
  210. var timeStamp = [];
  211. let stamp = new Date(new Date().setHours(0, 0, 0, 0)).getTime();
  212. for (let i = 0; i < 96; i++) {
  213. timeStamp.push(dayjs(stamp).format("HH:mm"));
  214. this.emptyData.push("0");
  215. stamp = parseInt(stamp) + 15 * 60 * 1000;
  216. }
  217. timeStamp.push("24:00");
  218. return timeStamp;
  219. },
  220. },
  221. watch: {
  222. windCurveValues: {
  223. handler() {
  224. this.getChart();
  225. },
  226. },
  227. },
  228. };
  229. </script>
  230. <style lang="less" scoped></style>