考核工作,求帮忙dataZoom中间小滑块添加点击事件,只要小滑块echarts 折线配置项内容和展示

我想给dataZoom中间可以滑动的滑块添加点击事件,怎么搞?用myChart.on('dataZoom', function (params) {console.log( params)});,一整条都被绑定了。。。,还有怎么获取小滑块两边的值,或者说滑块滑动后X轴起点,终点值。

配置项如下
      option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    yAxis: {},
    series: [{
        type: 'line',
        data:[220, 182, 191, 234, 290, 330, 310]
    }],
    dataZoom: [
			        {
			            type: 'slider',
			            show: true,
			            xAxisIndex: [0],
			            start: 80,
			            end: 100
			        },
			        
			    ]
};
    
截图如下