怎么把时间轴click事件改为dblclickecharts 配置项内容和展示

怎么把时间轴click事件改为dblclick

配置项如下
      option = {
    title: {
        text: '怎么把时间轴click事件改为dblclick'
    },
    timeline: {
                                bottom: 15,
                                show: true,
                               
                                playInterval: '3000',
                                axisType: 'time',
                                controlStyle: {
                                    showPlayBtn: true,
                                    showPrevBtn: true,
                                    showNextBtn: true,
                                },
                                tooltip: {
                                    formatter: function (params) {
                                        return params.name;
                                    }
                                },
                                data: [1,2,3],
                                label: {
                                    formatter: function (s) {
                                        var date = (new Date(s)).getFullYear().toString().substring(2, 4) + '/' + ((new Date(s)).getMonth() + 1).toString()
                                        return date;
                                    }
                                }
                            },
   
};
    
截图如下