highcharts-堆积条,如何使图表覆盖宽度100%?

时间:2014-04-18 18:43:16

标签: highcharts

我在jsfiddle中创建了一个代表两个值的图表。 id就像要调整的堆积条形图一样,它占据了div的整个宽度。它应该涵盖背景,就像这样。

http://jsfiddle.net/ftaran/jBHDM/4/

enter image description here

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'bar',
            background:'yellow'
        },
        credits: {
            enabled: false
        },
        title: {
            text: null
        },
        xAxis: {
            labels: {
                enabled: false
            }

        },
        yAxis: {
            title: null,
            labels: {
                enabled: false
            },
            labels: {
                enabled: false
            }
        },
        tooltip: {
            formatter: function () {
                return '<b>' + this.series.name + ':</b> ' + this.y + '<br/>' + this.percentage.toFixed(2) + '%';
            }
        },
        legend: {
            enabled: false
        },
        plotOptions: {
            series: {
                stacking: 'normal'
            }
        },
        series: [{
            name: 'Fail',
            color: 'red',
            data: [5]
        }, {
            name: 'Success',
            color: 'green',
            data: [2]
        }]
    });
});

1 个答案:

答案 0 :(得分:1)

尝试使用此yAxis参数:

yAxis: {
     ...
     endOnTick: false,
     ...
},