美文网首页
echarts的 dataZoom 固定 不缩放

echarts的 dataZoom 固定 不缩放

作者: 家有饿犬和聋猫 | 来源:发表于2020-11-23 09:48 被阅读0次
   dataZoom: {
            type: 'slider',
            yAxisIndex: 0,
            orient: 'vertical',  // 竖直。
            filterMode: 'empty', // 当前数据窗口外的数据,被 设置为空。即 不会 影响其他轴的数据范围。
            zoomLock: true,
            right: 30,
            width: 6,
            startValue: props.data.data.length - 1,
            endValue: props.data.data.length - 6,
            borderColor: 'transparent',
            handleSize: 0,
            backgroundColor: '#001940',
            fillerColor: '#1C70E3',
            showDetail: false  // 是否显示detail,即拖拽时候显示详细数值信息。
        },

image.png

相关文章

网友评论

      本文标题:echarts的 dataZoom 固定 不缩放

      本文链接:https://www.haomeiwen.com/subject/wesmiktx.html