vue中Echarts的x轴增加横向滚动条

charts x轴 增加滚动条

  • 在option 配置项中添加 【 dataZoom 中配置 】 设置x轴滚动条
  • 效果图: 动态拖动
  • 以下参考代码

dataZoom配置   

官网写法

option = {
   xAxis: {
       type: 'category',
       data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
   },
   dataZoom: [{
      type: 'slider',
      show: true, // flase直接隐藏图形
      xAxisIndex: [0],
      left: '9%', // 滚动条靠左侧的百分比
      bottom: -5,
      start: 10, // 滚动条的起始位置(10%)
      end: 90 // 滚动条的终止位置(90%)
  }],
   yAxis: {
       type: 'value'
   },
   series: [{
       data: [120, 200, 150, 80, 70, 110, 130],
       type: 'bar',
       barWidth:30,//设置柱状图宽度
   }]
};

这里写图片描述 

 

你可能感兴趣的:(vue,echarts,x轴,滚动条,vue,横向)