tooltip如何在label上触发

描述:当前是关于Echarts图表中的 树图 示例。
 
            myChart.showLoading();
    myChart.hideLoading();


    myChart.setOption(option = {
        tooltip: {
            trigger: 'item',
            triggerOn: 'mousemove'
        },
        series: [
            {
                type: 'tree',

                data: [{
                    "children": [
                        {
                            "name": "实践",
                            "hasChild":false,
                            "collapsed":true
                        },
                        {
                            "name": "理论",
                            "hasChild":false,
                            "collapsed":true
                        }
                    ],
                    "name": "学习方法"
                }],

                top: '1%',
                left: '7%',
                bottom: '1%',
                right: '20%',

                symbolSize: 14,

                label: {
                    normal: {
                        position: 'left',
                        verticalAlign: 'middle',
                        align: 'right',
                        fontSize:16
                    }
                },

                leaves: {
                    label: {
                        normal: {
                            position: 'right',
                            verticalAlign: 'middle',
                            align: 'left'
                        }
                    }
                },

                expandAndCollapse: true,
                animationDuration: 550,
                animationDurationUpdate: 750
            }
        ]
    });