option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [
{
data: [150, 230, 224, 218, 135, 147, 260],
type: 'line',
label: {//显示折现的值
show: true,
color: '#000000',
backgroundColor: 'transparent'//隐藏背景颜色不然感觉有描边
},
// 上下限制
markLine: {
symbolSize: 0,//不展示上下限两边的图标
data: [
{
lineStyle: {
color: '#ffc000',
width: 3
},
yAxis: 200,//控制限制刻度
label: { show: true, position: 'end', formatter: '上限' }
},
{
lineStyle: {
color: '#4f81bd',
width: 3
},
yAxis: 100,
label: { show: true, position: 'end', formatter: '下限' }
}
]
}
}
]
};
echarts上下限制+展示数据
最新推荐文章于 2024-04-18 14:30:56 发布