current-scatter-chart.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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. props: {
  10. // 图表宽度
  11. width: {
  12. type: String,
  13. default: "100%",
  14. },
  15. // 图表高度
  16. height: {
  17. type: String,
  18. default: "350px",
  19. },
  20. // 图表主标题
  21. chartTitle: {
  22. type: String,
  23. default: "自定义图表组件",
  24. },
  25. // X 轴配置项
  26. xAxisData: {
  27. type: Array,
  28. default: () => {
  29. return [];
  30. },
  31. },
  32. // Y 轴配置项
  33. yAxisData: {
  34. type: Array,
  35. default: () => {
  36. return [];
  37. },
  38. },
  39. // 图表核心数据
  40. seriesData: {
  41. type: Array,
  42. default: () => {
  43. return [];
  44. },
  45. },
  46. // 是否显示图表图例
  47. showLegend: {
  48. type: Boolean,
  49. default: true,
  50. },
  51. // 是否默认采用笔刷模式
  52. brushSelected: {
  53. type: Boolean,
  54. default: true,
  55. },
  56. },
  57. data() {
  58. return {
  59. id: "",
  60. chart: null,
  61. color: [
  62. "#05bb4c",
  63. "#4b55ae",
  64. "#fa8c16",
  65. "#f8de5b",
  66. "#1a93cf",
  67. "#c531c7",
  68. "#bd3338",
  69. ],
  70. };
  71. },
  72. methods: {
  73. resize() {},
  74. initChart() {
  75. const that = this;
  76. let myChart = echarts.init(document.getElementById(this.id));
  77. //指定图表的配置项和数据
  78. const option = {
  79. //标题
  80. title: {
  81. text: that.chartTitle,
  82. textStyle: {
  83. fontSize: util.vh(16),
  84. color: that.$store.state.themeName === "dark" ? "#fff" : "#000",
  85. },
  86. },
  87. backgroundColor:
  88. that.$store.state.themeName === "dark"
  89. ? "rgba(0,0,0,0.4)"
  90. : "rgba(255,255,255,0.5)",
  91. //工具箱
  92. toolbox: {
  93. show: true,
  94. x: "right",
  95. position: [10, 10],
  96. backgroundColor:
  97. that.$store.state.themeName === "dark"
  98. ? "rgba(0,0,0,0.4)"
  99. : "rgba(255,255,255,0.5)",
  100. borderColor:
  101. that.$store.state.themeName === "dark"
  102. ? partten.getColor("gray")
  103. : "#000",
  104. textStyle: {
  105. fontSize: util.vh(16),
  106. color: that.$store.state.themeName === "dark" ? "#fff" : "#000",
  107. },
  108. iconStyle: {
  109. borderColor:
  110. that.$store.state.themeName === "dark" ? "#fff" : "#000",
  111. },
  112. emphasis: {
  113. iconStyle: {
  114. borderColor:
  115. that.$store.state.themeName === "dark" ? "#fff" : "#000",
  116. },
  117. },
  118. // feature: {
  119. // dataZoom: {
  120. // yAxisIndex: "none",
  121. // },
  122. // dataView: { readOnly: false },
  123. // magicType: { type: ["line", "bar"] },
  124. // restore: {},
  125. // saveAsImage: {},
  126. // },
  127. },
  128. tooltip: {
  129. trigger: "item",
  130. axisPointer: {
  131. type: "cross",
  132. },
  133. backgroundColor:
  134. that.$store.state.themeName === "dark"
  135. ? "rgba(0,0,0,0.4)"
  136. : "rgba(255,255,255,0.5)",
  137. borderColor:
  138. that.$store.state.themeName === "dark"
  139. ? partten.getColor("gray")
  140. : "#000",
  141. textStyle: {
  142. fontSize: util.vh(16),
  143. color: that.$store.state.themeName === "dark" ? "#fff" : "#000",
  144. },
  145. formatter(params) {
  146. return params.name
  147. ? `${params.seriesName}<br />风速:${params.name}米/s<br />功率:${params.value}kW`
  148. : `${params.seriesName}<br />风速:${params.data[0]}米/s<br />功率:${params.data[1]}kW`;
  149. },
  150. },
  151. brush: {
  152. // xAxisIndex: "all",
  153. // yAxisIndex: "all",
  154. transformable: true,
  155. throttleType: "debounce",
  156. throttleDelay: 600,
  157. removeOnClick: false,
  158. brushType: "polygon",
  159. brushMode: "multiple",
  160. brushStyle: {
  161. borderWidth: 1,
  162. color: "rgba(255,36,36,0.2)",
  163. borderColor: "#ff2424",
  164. },
  165. // outOfBrush: {
  166. // colorAlpha: 0.5,
  167. // },
  168. },
  169. dataZoom: [
  170. {
  171. type: "inside", //图表下方的伸缩条
  172. show: true, //是否显示
  173. realtime: true, //拖动时,是否实时更新系列的视图
  174. start: 0, //伸缩条开始位置(1-100),可以随时更改
  175. end: 100, //伸缩条结束位置(1-100),可以随时更改
  176. },
  177. {
  178. type: "slider", //图表下方的伸缩条
  179. show: true, //是否显示
  180. realtime: true, //拖动时,是否实时更新系列的视图
  181. start: 0, //伸缩条开始位置(1-100),可以随时更改
  182. end: 100, //伸缩条结束位置(1-100),可以随时更改
  183. },
  184. ],
  185. textStyle: {
  186. fontSize: util.vh(16),
  187. color: that.$store.state.themeName === "dark" ? "#fff" : "#000",
  188. },
  189. //图例-每一条数据的名字
  190. legend: {
  191. show: that.showLegend,
  192. data: ["风速功率", "实际功率", "最优功率"],
  193. right: "120",
  194. top: "5",
  195. icon: "circle",
  196. itemWidth: 6,
  197. inactiveColor:
  198. that.$store.state.themeName === "dark"
  199. ? partten.getColor("gray")
  200. : "#000",
  201. textStyle: {
  202. color:
  203. that.$store.state.themeName === "dark"
  204. ? partten.getColor("grayl")
  205. : "#000",
  206. fontSize: 12,
  207. },
  208. },
  209. grid: {
  210. top: 32,
  211. left: 40,
  212. right: 40,
  213. bottom: 24,
  214. },
  215. //x轴
  216. xAxis: [
  217. {
  218. type: "category",
  219. boundaryGap: false,
  220. data: that.xAxisData || [
  221. "0",
  222. "1",
  223. "2",
  224. "3",
  225. "4",
  226. "5",
  227. "6",
  228. "7",
  229. "8",
  230. "9",
  231. "10",
  232. "11",
  233. "12",
  234. "13",
  235. "14",
  236. "15",
  237. "16",
  238. "17",
  239. "18",
  240. "19",
  241. "20",
  242. "21",
  243. "22",
  244. "23",
  245. "24",
  246. "25",
  247. ],
  248. min: 0,
  249. axisLabel: {
  250. formatter: "{value}",
  251. fontSize: util.vh(14),
  252. },
  253. textStyle: {
  254. color:
  255. this.$store.state.themeName === "dark"
  256. ? partten.getColor("gray")
  257. : "#000",
  258. },
  259. },
  260. {
  261. // name: this.xTitle,
  262. show: false,
  263. type: "value",
  264. boundaryGap: false,
  265. // min: that?.xAxisData[0],
  266. min: 0,
  267. max: that?.xAxisData[that?.xAxisData?.length - 1],
  268. scale: true,
  269. axisLabel: {
  270. formatter: "{value}",
  271. },
  272. splitLine: {
  273. show: false,
  274. },
  275. },
  276. ],
  277. //y轴没有显式设置,根据值自动生成y轴
  278. yAxis: {
  279. splitLine: { show: false },
  280. },
  281. //数据-data是最终要显示的数据
  282. series: that.seriesData,
  283. };
  284. that.resize = function () {
  285. myChart.resize();
  286. };
  287. window.addEventListener("resize", that.resize);
  288. myChart.setOption(option);
  289. if (that.brushSelected) {
  290. myChart.off("brushSelected");
  291. myChart.on("brushSelected", (params) => {
  292. that.$emit("getSelected", params.batch || []);
  293. });
  294. myChart.dispatchAction({
  295. type: "takeGlobalCursor",
  296. // 如果想变为“可刷选状态”,必须设置。不设置则会关闭“可刷选状态”。
  297. key: "brush",
  298. brushOption: {
  299. // 参见 brush 组件的 brushType。如果设置为 false 则关闭“可刷选状态”。
  300. brushType: "polygon",
  301. // 参见 brush 组件的 brushMode。如果不设置,则取 brush 组件的 brushMode 设置。
  302. brushMode: "multiple",
  303. },
  304. });
  305. }
  306. },
  307. },
  308. created() {
  309. this.id = "chart-" + util.newGUID();
  310. },
  311. mounted() {
  312. this.$nextTick(() => {
  313. this.$el.style.width = this.width;
  314. this.$el.style.height = this.height;
  315. this.initChart();
  316. });
  317. },
  318. updated() {
  319. let myChart = echarts.init(document.getElementById(this.id));
  320. myChart.dispose();
  321. this.$nextTick(() => {
  322. this.initChart();
  323. });
  324. },
  325. unmounted() {
  326. window.removeEventListener("resize", this.resize);
  327. },
  328. };
  329. </script>
  330. <style lang="scss">
  331. .chart {
  332. width: 100%;
  333. height: 100%;
  334. display: inline-block;
  335. }
  336. </style>