2

我正在尝试使用仅在一个时间点显示多个系列的 Highcharts 创建一个柱形图,我想在 x 轴上显示系列的名称以及能够使用隐藏和显示每个系列传奇。我最接近我想要实现的目标是添加类别并拥有多个系列。

xAxis: {
            categories: [
                'Tokyo',
                'New York',
                'London',
                'Berlin'
            ]
        }

然后添加多个系列,每个系列中只有一个数据点

series: [{
            name: 'Tokyo',
            data: [49.9, null,null,null]

        }, {
            name: 'New York',
            data: [null, 83.6,null,null]

        }, {
            name: 'London',
            data: [null, null, 48.9,null]
        }, {
            name: 'Berlin',
            data:[null, null, null, 42.4]
        }]

问题在于,虽然这仅显示 x 轴上每个点的一个系列,但 Highcharts 为每个其他系列分配空间,并且当隐藏系列时,只有系列将被隐藏,而不是 x 轴上的标签。jsfiddle 的链接在这里:http: //jsfiddle.net/md2zk/

4

2 回答 2

5

在 plotOptions 中设置grouping: false,见:http: //jsfiddle.net/Fusher/md2zk/5/

于 2013-08-13T10:29:53.997 回答
0

可以将类别与列一起隐藏。请通过下面给出的链接。希望这会有所帮助。

http://jsfiddle.net/md2zk/633/

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'column'
        },
        title: {
            text: 'Monthly Average Rainfall'
        },
        subtitle: {
            text: 'Source: WorldClimate.com'
        },
        xAxis: {
           type: 'category',
        },
        yAxis: {
            min: 0,
            title: {
                text: 'Rainfall (mm)'
            },   
        },
        plotOptions: {

             series: {
              grouping: false,
              events: {
                legendItemClick: function () {
                debugger;
                    if (this.visible) {
                                        this.setData([], false)
                                         } 
                     else {
                                            this.setData([this.chart.series[this.index].userOptions], true);
                                            }
                }
            },
             borderWidth: 0,
            dataLabels: {
                enabled: true,
                //style: {
                //    color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
                //},

            },
          },
        },
        series: [{
            name: 'Tokyo',
            data: [{name : 'Tokyo',y:49.9}],
            y: 49.9

        }, {
            name: 'New York',
            data: [{name : 'New York',y:83.6}],
            y: 83.6

        }, {
            name: 'London',
            data: [{name : 'London',y:48.9}],
            y: 48.9
        }, {
            name: 'Berlin',
            data:[{name : 'Berlin',y: 42.4}],
            y: 42.4
        }],
          navigation: {
        buttonOptions: {
            enabled: true
        }
    }
    });
});
于 2018-06-05T13:12:21.120 回答