分辨率

This commit is contained in:
2023-08-28 10:47:35 +08:00
parent 13f2c2a97b
commit 08653ff6ea
3 changed files with 43 additions and 43 deletions

View File

@@ -592,34 +592,34 @@ export default {
borderWidth: 2
}
// smooth: true
}, { // 滚动点
type: 'lines',
zIndex: 999,
z: 999,
// yAxisIndex: 1,
coordinateSystem: 'cartesian2d',
polyline: true,
smooth: true,
effect: {
show: true,
trailLength: 0,
period: 10, // 光点滑动速度
delay: 2000,
symbol: 'circle',
color: '#9eefce',
symbolSize: 8,
shadowBlur: 10,
shadowColor: '#9eefce'
},
lineStyle: {
show: false,
opacity: 0
},
data: [{
coords: xData.map((item, index) => {
return ['' + xData[index], '' + values2[index]]
})
}]
// }, { // 滚动点
// type: 'lines',
// zIndex: 999,
// z: 999,
// // yAxisIndex: 1,
// coordinateSystem: 'cartesian2d',
// polyline: true,
// smooth: true,
// effect: {
// show: true,
// trailLength: 0,
// period: 10, // 光点滑动速度
// delay: 2000,
// symbol: 'circle',
// color: '#9eefce',
// symbolSize: 8,
// shadowBlur: 10,
// shadowColor: '#9eefce'
// },
// lineStyle: {
// show: false,
// opacity: 0
// },
// data: [{
// coords: xData.map((item, index) => {
// return ['' + xData[index], '' + values2[index]]
// })
// }]
}]
}
let echart = document.getElementById('echart_d2')