Ismar Slomic
Ismar Slomic

Reputation: 5514

Highcharts: aligning data labels on the same line in bar charts

How could i achieve to align the data labels on the same vertical line in Highcharts bar charts as showned in the example below?

enter image description here

Upvotes: 2

Views: 3791

Answers (1)

Paweł Fus
Paweł Fus

Reputation: 45079

You need to set:

        plotOptions: {
            bar: {
                dataLabels: {
                    enabled: true,
                    inside: true,
                    align: 'left',
                    x: 390 //offset
                }
            }
        },

Demo: http://jsfiddle.net/5aF54/1/

Upvotes: 2

Related Questions