highcharts如何禁用点击legend隐藏?

2025-04-17 14:25:34
推荐回答(1个)
回答1:

在highCharts对象中加入如下代码:

plotOptions : {
    pie : {
        point : {
            events : {
                legendItemClick: function() {
                    return false;
                }
            }
        },
    }
}