Search code examples
angularhighchartsangular2-highcharts

Display text inside pie chart


I have pie chart. I'm using angular2-highcharts library

title : { text : 'simple chart' },
        series: [{
            data: [29.9, 71.5, 106.4, 129],
        }],
        chart: {
            type: 'pie'
        }

On hover it displays values.

enter image description here

But I want them to be displayed inside that piece. like this

enter image description here

How can I achieve this?

example is here


Solution

  • Add plotOptions in highcharts

    plotOptions: {
            pie: {
                dataLabels: {
                    enabled: true,
                    formatter: function() {
                        return this.y;
                    },
                    distance: -30,
                    color:'white'
                }
            }
        },
    

    plunker demo