highcharts 开发日志

点击事件:this

pie: {
    allowPointSelect: true,
    cursor: 'pointer',
    dataLabels: {
        enabled: true,
        format: '<b>{point.name}</b>: {point.percentage:.1f} %',
        style: {
            color: (ReactHighcharts.theme && ReactHighcharts.theme.contrastTextColor) || 'black'
        }
    }
    , events: {
        click: function (e) {
            var t=this.data[event.point.x].name;//获取到对应的data里面的值,进行逻辑操做
            console.log(t);
        }
    }
}
相关文章
相关标签/搜索