1

在最新版本的 Highcharts 中,我的 x 轴线比预期的要大是偏移的。但是,如果我打开 Firebug(重新调整我的页面大小)并关闭它,我的 x 轴就在他的正确位置。

打开 Firebug 之前:这里

之后:这里

这是代码:

options = {
    chart: {
        type: 'column',
        animation: false,
        renderTo: 'chart1'

    },
        xAxis: {
            categories: ['STBL','AHM OE','TCR'],
            labels: {
                rotation: -45,
                overflow: "justify",
                align: 'right',
                y: 20
            }
        },
        yAxis: {
            min: 0,
            title: {
                text: ''
            }
        },
        legend: {
            enabled: false,

        },
        tooltip: {
            formatter: function() {
                return ''+
                    this.x +': '+ Highcharts.numberFormat(this.y, 5);
            }
        },
        plotOptions: {
            column: {
                borderWidth: 0,
                pointWidth: 8
            }
        },
        series: [{
            name: '',
            data: [9.93782224348591E-4,0.0012882708991709339,0.01952599999881562]
        }]
    };
var chart1 = new Highcharts.Chart(options);

有人可以帮我吗?

谢谢

4

0 回答 0