如何在Highcharts中修改负轴条形图?

时间:2017-12-05 03:42:14

标签: javascript highcharts

我使用Highcharts创建了一个负轴条形图,但我希望它的格式没有出现。我无法将其操作为所示的格式。

我附上了下面提到的代码的输出。 http://jsfiddle.net/00bh7yp7/2/

// Age categories 
var categories = [
        '0-4', '5-9', '10-14', '15-19',
        '20-24', '25-29', '30-34', '35-39', '40-44',
        '45-49', '50-54', '55-59', '60-64', '65-69',
        '70-74', '75-79', '80-84', '85-89', '90-94',
        '95-99', '100 + ' ];

    Highcharts.chart('container', {
        chart: {
            type: 'bar'
        },
        title: {
            text: 'Population pyramid for Germany, 2015'
        },
        subtitle: {
            text: 'Source: <a href="http://populationpyramid.net/germany/2015/">Population Pyramids of the World from 1950 to 2100</a>'
        },
        xAxis: {
            categories: categories,
            reversed: false,
            offset: 0,
            labels: {
                step: 1
            },

        },
        yAxis: {

            title: {
                text: null
            },
            labels: {
                formatter: function () {
                    return Math.abs(this.value) + '%';
                }
            }
        },

        plotOptions: {
            series: {
               stacking: 'normal'
            }
        },

        tooltip: {
            formatter: function () {
                return '<b>' + this.series.name + ', age ' + this.point.category + '</b><br/>' +
                    'Population: ' + Highcharts.numberFormat(Math.abs(this.point.y), 0);
            }
        },

        series: [{
            name: 'Male',
            data: [-2.2, -2.2, -2.3, -2.5, -2.7, -3.1, -3.2,
                -3.0, -3.2, -4.3, -4.4, -3.6, -3.1, -2.4,
                -2.5, -2.3, -1.2, -0.6, -0.2, -0.0, -0.0]
        }, {
            name: 'Female',
            data: [2.1, 2.0, 2.2, 2.4, 2.6, 3.0, 3.1, 2.9,
                3.1, 4.1, 4.3, 3.6, 3.4, 2.6, 2.9, 2.9,
                1.8, 1.2, 0.6, 0.1, 0.0]
        }] });

当前输出 enter image description here

必需的输出 enter image description here

我正在寻找格式化,以便类别比例介于两个图形之间,然后我们可以进一步管理它。请帮忙。

1 个答案:

答案 0 :(得分:2)

实现该间距的一种方法是使用两个y轴并使用leftwidth属性定位它们(​​它们未在API中记录,但是他们工作):

  yAxis: [{
    left: '55%',
    width: '45%'
    (...)
  }, {
    reversed: true,
    width: '45%',
    offset: 0
    (...)
  }],
  series: [{
    data: [1, 3]
  }, {
    data: [2, 5],
    yAxis: 1
  }]

X轴的处理方式相似:

  xAxis: {
    left: '50%',
    (...)
  }

现场演示: http://jsfiddle.net/kkulig/dx2vj8k1/