在react-highcharts中共享图表的图例?

时间:2019-04-16 13:54:44

标签: reactjs highcharts react-highcharts

如何使用react-highcharts让两个图表具有共享的图例(控制两个图表)?

jsFiddle中提供了使用jQuery的解决方案,但是我无法在React中弄清楚如何做到这一点(并且组件的选项引用了其他组件)。

jQuery:

$(function () {
$('#container1').highcharts({
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    legend: {
        enabled: false
    },

    series: [{
        id: 'someId',
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]
});
$('#container2').highcharts({
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    plotOptions: {
        series: {
            events: {
                legendItemClick: function (event) {
                    var XYZ = $('#container1').highcharts(),
                        series = XYZ.get(this.options.id); //get corresponding series

                    if (series) {
                        if (this.visible) {
                            series.hide();
                        } else {
                            series.show();
                        }
                    }
                }
            }
        }
    },

    series: [{
        id: 'someId',
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]
});

});

(有效)

指针赞赏

1 个答案:

答案 0 :(得分:0)

您可以在React中类似地获得所需的结果。在下面,您可以找到使用highcharts-react-official包装器的有效示例:

plotOptions: {
    series: {
        events: {
            legendItemClick: (function(component) {
                return function() {
                    const chart = component.chart1.current.chart;
                    const series = chart.get(this.options.id);

                    if (series) {
                        if (this.visible) {
                            series.hide();
                        } else {
                            series.show();
                        }
                    }
                }
            })(this)
        }
    }
}

实时演示:https://codesandbox.io/s/oo0q4832jy

文档:https://github.com/highcharts/highcharts-react/blob/master/README.md