Reputation: 5514
How could i achieve to align the data labels on the same vertical line in Highcharts bar charts as showned in the example below?
Upvotes: 2
Views: 3791
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