通过option中的dataZoom中的startValue去设置开始的条数,endValue设置结束的条数。
dataZoom: [
{
type: 'inside', // 横向滑动条
show: true,
startValue: 0,//开始的条数
endValue: 11,//结束的条数
handleResize: 32,
},
],
option中的dataZoom中的start去设置开始的比例,end设置结束的占比。
dataZoom: [
{
type: 'inside', // 横向滑动条
show: true,
start: 0,
end: 10, // 控制默认展示的比例
},
],