在highcharts饼图图例中为列添加标签

时间:2015-09-01 15:23:20

标签: javascript jquery charts highcharts

我正在制作高级图表,我对传奇有疑问。我在饼图的图例中有4列,需要为每个列添加标题。我正在使用以下代码,结果如下。

pie chart - 4 columns legend

               useHTML: true,
                labelFormatter: function () {

                    return '<div style="width:800px"><span style="float:left;width:200px">' + this.name + '</span><span>'
                        + this.description + '</span><span style="float:right;width:100px">' + this.target + '</span><span style="float:right;width:100px">' + Highcharts.numberFormat(this.y, 0) + '%</span></div>';
        }

1 个答案:

答案 0 :(得分:1)

您可以禁用图例格式化程序,然后准备自己的HTML图例,创建所需的样式。简单HTML图例的示例:

$legend = $('#customLegend');

    $.each(chart.series[0].data, function (j, data) {

        $legend.append('<div class="item"><div class="symbol" style="background-color:'+data.color+'"></div><div class="serieName" id="">' + data.name + '</div></div>');

    });

    $('#customLegend .item').click(function(){
        var inx = $(this).index(),
            point = chart.series[0].data[inx];

        if(point.visible)
            point.setVisible(false);
        else
            point.setVisible(true);
    });  

http://jsfiddle.net/N3KAC/1/