Skip to content Skip to sidebar Skip to footer

Add Series Value In Legend For Pie Charts

Using Highcharts.js - I want to add the series value to legend , I don't think i need to use label Formatting function ( I tried using that ). Here is the code currently I have but

Solution 1:

Figured it myself. I have to use labelFormatter. Here is the code.

  legend: {
            layout: 'vertical',
            enabled: true,
            floating: true,
            align: 'right',
            verticalAlign: 'middle',
                 labelFormatter: function() {
                     return this.name + ' ' +this.percentage;
                 }
                 }

Post a Comment for "Add Series Value In Legend For Pie Charts"