1

我有一个启用了数据标签的 Highcharts 图表。默认情况下,数据标签附加到每个数据栏的末尾(请参阅此小提琴:http: //jsfiddle.net/cyphun/NHCvW)。

是否可以移动负数据标签并将它们显示在 x 轴旁边而不是栏的末端?这是我想做的修改后的屏幕截图:

http://cl.ly/image/2G3F0I2l2m1z

这是我的 Highcharts 示例代码的副本:

$(function () {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'column'
            },
           plotOptions: {
                column: {
                    dataLabels: {
                        enabled: true,
                        useHTML: true,
                        style: {
                            color: '#252525',
                            fontWeight: 'bold'
                        }
                    }
                }
            },
            title: {
                text: 'Column chart with negative values'
            },
            xAxis: {
                categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
            },
            tooltip: {
                formatter: function() {
                    return ''+
                        this.series.name +': '+ this.y +'';
                }
            },
            credits: {
                enabled: false
            },
            series: [{
                name: 'Jane',
                data: [2, -2, -3, 2, 1]
            }]
        });
    });

});

谢谢您的帮助!

4

1 回答 1

1

您可以通过使用 stackLabels 并通过设置 dataLabels 的 y(位置 y)属性来实现这一点。此外,您应该将 dataLabels 的verticalAlign 设置为“top”。

plotOptions: {
    column: {
        dataLabels: {
            enabled: true,
            useHTML: true,
            style: {
                color: '#252525',
                fontWeight: 'bold'
            },
            verticalAlign : 'top',
            y: -15
        }
    }
}

演示:http: //jsfiddle.net/NHCvW/49/

于 2013-01-15T08:14:04.473 回答