score:2

Accepted answer

You forgot to add the first one. Change the first text to : chart.renderer.text('Papa 1', 90, 60).add();

function(chart) { 
       chart.renderer.text('Papa 1', 90, 60).add();
       chart.renderer.text('Papa 2', 140, 90)
            .attr({
                rotation: -0
            })
            .css({
                color: '#B8B6B6',
                fontSize: '12px'
            })
            .add();
    });

Related Query

More Query from same tag