在Highcharts条形图中居中数据标签

时间:2012-04-12 20:48:31

标签: javascript highcharts

我正在尝试将标签置于Highcharts的条形图中。在我的情况下,您可以在这里看到倒置的瀑布图:

http://jsfiddle.net/mUD9a/3/

我正在尝试在每个条形中水平居中数据标签,这样如果系列中的数据点的低值为1,y为3,则该点将位于2.我尝试了建议的解决方法高图表文档在这里:

http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-y/

使用最新版本,它似乎不会通过更改格式化程序回调中的选项来影响渲染。

感谢任何帮助。

3 个答案:

答案 0 :(得分:3)

我知道这是旧的,但我只是需要这个,所以这就是我做的。我确定的解决方案是How to position datalabel at the base of bar series和alba lions示例的组合,使用stackLabels而不是dataLabels。

yAxis:{
    stackLabels: {
        style: {
            color: 'white'       // Make the labels white
        },
        enabled: true,           // Enable stack labels
        verticalAlign: 'middle', // Position them vertically in the middle
        align: 'center',            // Align them to the left edge of the bar
        formatter: function() {
            return categories[this.x];
        }
    }
}

请参阅jsfiddle

答案 1 :(得分:2)

我快速浏览了文档和您的示例,并在您的系列中使用dataLabel提出了强力解决方案。显然,与中心对齐将以y为中心(例如,上面的3)。所以,我只是使用datalabel上的x偏移将其移位。不是一个真正合适的解决方案,但可能会让你思考正确的方向:

series: [{
    min: 0,
    max: versions.length + 1,
    data: [ { low: 1, y: 3 }, { low: 2, y: 4 }, { low: 3, y: 5 }, { low: 3, y: 5 } ],
    dataLabels: {
        enabled: true,
        color: '#FFFFFF',
        align: 'right',
        x: -130,
        y: 10,
        formatter: function() {
            return  versions[this.y - 1];
        },
        style: {
            fontSize: '13px',
            fontFamily: 'Verdana, sans-serif'
        }
    }                                    
}]

Wayback Machine Archived Version - Not functional, but the code is there

答案 2 :(得分:0)

试试这个:

plotOptions: {
       series: {
       dataLabels: {                    
            enabled: true,
            color: '#000000',
            useHTML:true,
            style: {
                    fontSize: '13px',
                    fontFamily: 'Verdana, sans-serif'
                    },
            formatter:function(){
               return '<div align="center"><b><span>' + this.point.options.name + '</b><br />'+this.x+' '+this.y+'</span></div>';
 },