echarts设置图表滚动条 设置滚动条高度

在option配置项中设置dataZoom属性即可,height即可指定滚动条的高度,这里我就

设置14。

   dataZoom: [
          {
            height: 14,
            type: "slider",
            show: true,
            xAxisIndex: [0],
            left: '20%',
            bottom: 0,
            start: 10,
            end: 10 
          }
        ],

 

你可能感兴趣的:(echarts)