Reputation: 89
How could I achieve to align the data labels on the left in Highcharts bar charts as showned in the picture below?
Thanks.
Upvotes: 0
Views: 4219
Reputation: 17800
Just align them left in your settings:
plotOptions: {
series: {
dataLabels: {
enabled: true,
inside: true,
align: 'left'
}
}
}
Fiddle:
Reference:
http://api.highcharts.com/highcharts/plotOptions.series.dataLabels.align
http://api.highcharts.com/highcharts/plotOptions.series.dataLabels.inside
Upvotes: 1