Echart横坐标时间轴滑动

时间:2023-03-09 14:37:21
Echart横坐标时间轴滑动

主要针对于dataZoom的使用,代码如下:

option = {
title: {
text: '未来一周气温变化',
subtext: '纯属虚构'
},
tooltip: {
trigger: 'axis'
},
legend: {
data:['最高气温','最低气温']
},
toolbox: {
show: true,
feature: {
dataZoom: {
yAxisIndex: 'none'
},
dataView: {readOnly: false},
magicType: {type: ['line', 'bar']},
restore: {},
saveAsImage: {}
}
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['周一','周二','周三','周四','周五','周六','周日']
},
yAxis: {
type: 'value',
axisLabel: {
formatter: '{value} °C'
}
},
"dataZoom": [
{
"show": true,
"height": ,
"xAxisIndex": [ ],
bottom:,
"start": ,
"end":
},
{
"type": "inside",
"show": true,
"height": ,
"xAxisIndex": [ ],
"start": ,
"end":
}],
series: [
{
name:'最高气温',
type:'line',
data:[, , , , , , ],
markPoint: {
data: [
{type: 'max', name: '最大值'},
{type: 'min', name: '最小值'}
]
},
markLine: {
data: [
{type: 'average', name: '平均值'}
]
}
},
{
name:'最低气温',
type:'line',
data:[, -, , , , , ],
markPoint: {
data: [
{name: '周最低', value: -, xAxis: , yAxis: -1.5}
]
},
markLine: {
data: [
{type: 'average', name: '平均值'},
[{
symbol: 'none',
x: '90%',
yAxis: 'max'
}, {
symbol: 'circle',
label: {
normal: {
position: 'start',
formatter: '最大值'
}
},
type: 'max',
name: '最高点'
}]
]
}
}
]
};