<template> <!-- 天气温度平滑折线图 --> <div :id="id" style="width: 100%; height: 100%"></div> </template> <script setup> import { guid } from '@/utils/ruoyi'; import { nextTick } from 'vue'; const id = guid(); const myChart = shallowRef(''); import * as echarts from 'echarts'; const props = defineProps({ //刷新标志 refresh: { type: [String, Number], default: 1, }, //x轴数据 XAxis: { type: Array, default: () => [], }, //y轴数据 YAxis: { type: Array, default: () => [], }, //名字 DataName: { type: String, }, //类型 typeName: { type: String, default: '', }, }); watch( () => props.refresh, value => { //先销毁实例 myChart.value && myChart.value.dispose(); init(); }, { deep: true, } ); function init() { myChart.value = echarts.init(document.getElementById(id)); let barWidth = 15; let option = { color: ['rgba(96, 203, 248,1)', 'rgba(96, 248, 221,1)'], legend: { selectedMode: false, itemStyle: { color: 'inherit', }, textStyle: { // color: "auto" color: '#fff', }, itemWidth: 15, itemHeight: 15, }, tooltip: { trigger: 'axis', backgroundColor: '#004284', borderColor: '#0B9BFF', borderRadius: 6, // 设置圆角大小 textStyle: { // 字体颜色 color: 'white', // 字体大小 fontSize: 14, }, formatter: params => { // console.log(params); var relVal = '' + params[0].name; for (var i = 0, l = params.length; i < l; i++) { if (params[i].seriesName) { let unit = 'm'; relVal += '<br/>' + params[i].marker + params[i].seriesName + ' ' + params[i].value + unit; } } return relVal; }, }, grid: { left: '5%', right: '4%', bottom: '3%', top: '18%', containLabel: true, }, xAxis: { boundaryGap: true, type: 'category', data: props.XAxis, axisLabel: { show: true, color: '#fff', }, axisLine: { show: true, lineStyle: { show: true, //是否显示坐标轴轴线, color: 'rgba(255,255,255,0.4)', //x轴轴线的颜色 width: 1, //x轴粗细 }, }, axisTick: { show: false, //是否显示刻度 }, }, yAxis: { type: 'value', name: props.typeName, nameLocation: 'start', nameTextStyle: { color: '#AED2E0', padding: [-5, 30, 0, 0], // 四个数字分别为上右下左与原位置距离 }, axisLabel: { show: true, color: '#AED2E0', formatter: function (value) { return value.toFixed(1); // 显示小数点后两位 }, }, splitLine: { show: true, // 是否显示分隔线。默认数值轴显示,类目轴不显示 type: 'solid', // 坐标轴线线的类型('solid',实线类型;'dashed',虚线类型;'dotted',点状类型) lineStyle: { color: 'rgba(255,255,255,0.2)', width: 1, // 设置分割线的粗细为2 }, }, axisLine: { show: true, lineStyle: { show: true, //是否显示坐标轴轴线, color: 'rgba(255,255,255,0.4)', //x轴轴线的颜色 width: 1, //x轴粗细 }, }, }, series: [ { name: props.YAxis[0] && props.YAxis[0].name, type: 'bar', barWidth: barWidth, itemStyle: { // borderRadius: [6, 6, 0, 0], color: function () { return new echarts.graphic.LinearGradient( 0, 1, 0, 0, [ { offset: 0, color: 'rgba(96, 203, 248,1)', }, { offset: 1, color: 'rgba(96, 203, 248,0.1)', }, ], false ); }, }, // showBackground: true, backgroundStyle: { color: 'transparent', borderWidth: 1, borderColor: 'rgba(148, 250, 65, 0.2)', }, data: props.YAxis[0] && props.YAxis[0].value, }, { data: props.YAxis[0] && props.YAxis[0].value, name: '', // 系列名称, 用于tooltip的显示, legend 的图例筛选 type: 'pictorialBar', // 系列类型 symbolSize: [15, 2], // 标记的大小 symbolOffset: [-8.5, 0], // 标记相对于原本位置的偏移 symbolPosition: 'end', // 图形的定位位置。可取值:start、end、center // 图例的图形样式 itemStyle: { color: { type: 'linear', x: 0, y: 0, x2: 1, y2: 0, colorStops: [ { offset: 0, color: 'rgba(96, 203, 248,1)', // 0% 处的颜色 }, { offset: 1, color: 'rgba(96, 203, 248,1)', // 100% 处的颜色 }, ], }, }, z: 100, // 组件的所有图形的z值。控制图形的前后顺序。z值小的图形会被z值大的图形覆盖 }, { name: props.YAxis[1] && props.YAxis[1].name, type: 'bar', barWidth: barWidth, itemStyle: { color: function () { return new echarts.graphic.LinearGradient( 0, 1, 0, 0, [ { offset: 0, color: 'rgba(96, 248, 221,1)', }, { offset: 1, color: 'rgba(96, 248, 221,0.1)', }, ], false ); }, }, // showBackground: true, backgroundStyle: { color: 'transparent', borderWidth: 1, borderColor: 'rgba(148, 250, 65, 0.2)', }, data: props.YAxis[1] && props.YAxis[1].value, }, { data: props.YAxis[1] && props.YAxis[1].value, name: '', // 系列名称, 用于tooltip的显示, legend 的图例筛选 type: 'pictorialBar', // 系列类型 symbolSize: [16, 2], // 标记的大小 symbolOffset: [9, 0], // 标记相对于原本位置的偏移 symbolPosition: 'end', // 图形的定位位置。可取值:start、end、center // 图例的图形样式 itemStyle: { color: { type: 'linear', x: 0, y: 0, x2: 1, y2: 0, colorStops: [ { offset: 0, color: 'rgba(96, 248, 221,1)', // 0% 处的颜色 }, { offset: 1, color: 'rgba(96, 248, 221,1)', // 100% 处的颜色 }, ], }, }, z: 100, // 组件的所有图形的z值。控制图形的前后顺序。z值小的图形会被z值大的图形覆盖 }, ], }; option && myChart.value.setOption(option); } function resizeTheChart() { if (myChart.value) { myChart.value.resize(); } } onMounted(() => { nextTick(() => { init(); window.addEventListener('resize', resizeTheChart); }); }); </script>