Highcharts - Firefox中缺少y轴数据标签

时间:2013-09-20 17:36:52

标签: highcharts

以下图表缺少最右侧堆叠列上的数据标签。该标签在最新版本的Google Chrome中正确显示,但该标签未出现在最新版本的Firefox中。

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'column'
        },
        title: {
            text: 'Stacked column chart'
        },
        xAxis: {
            categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
        },
        yAxis: {
            min: 0,
            title: {
                text: 'Total fruit consumption'
            },
            stackLabels: {
                enabled: true,
                style: {
                    fontWeight: 'bold',
                    color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
                }
            }
        },
        legend: {
            align: 'right',
            x: -70,
            verticalAlign: 'top',
            y: 20,
            floating: true,
            backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || 'white',
            borderColor: '#CCC',
            borderWidth: 1,
            shadow: false
        },
        tooltip: {
            formatter: function() {
                return '<b>'+ this.x +'</b><br/>'+
                    this.series.name +': '+ this.y +'<br/>'+
                    'Total: '+ this.point.stackTotal;
            }
        },
        plotOptions: {
            column: {
                stacking: 'normal',
                dataLabels: {
                    enabled: true,
                    color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
                }
            }
        },
        series: [{
            name: 'John',
            data: [5, 3, 4, 7, 2]
        }, {
            name: 'Jane',
            data: [2, 2, 3, 2, 5]
        }, {
            name: 'Joe',
            data: [3, 4, 4, 2, 1]
        }]
    });
});

Highcharts 3.0.5

Google Chrome 29.0.1547.76 m

Mozilla Firefox 21.0

Windows 7

有没有办法让标签在两个浏览器之间保持一致? 我正在寻找一种解决方法,不涉及更改图表的高度或图表中的数据。

http://jsfiddle.net/ricksuggs/eGW86/1/

2 个答案:

答案 0 :(得分:1)

尝试禁用裁剪数据标签:

plotOptions: {
    series: {
        dataLabels: {
            crop: false
    }
}

更新了小提琴:http://jsfiddle.net/eGW86/2/

答案 1 :(得分:0)

对于那些正在努力解决这个问题的人(像我今天早些时候),作为FYI,这已经被较新版本的highcharts库解决了