highchart:在柱形图上添加系列名称

时间:2013-10-23 16:18:11

标签: highcharts

我需要在每列上打印系列名称。现在,您只能将列的值打印为标签。 http://jsfiddle.net/mVxGz/

关于如何做到这一点的任何想法?

    plotOptions: {
        series: {
            dataLabels: {
                align: 'left',
                enabled: true,
                rotation: 270,
                inside: true
            }
        }
    }

1 个答案:

答案 0 :(得分:1)

这可以通过formatter完成。对于example

            formatter: function () {
                return this.series.name + ' - ' + this.y;
            }