Daisy
Daisy

Reputation: 89

Highcharts: how do I align data labels on the right in a bar chart?

How could I achieve to align the data labels on the left in Highcharts bar charts as showned in the picture below?

enter image description here

Thanks.

Upvotes: 0

Views: 4219

Answers (1)

jlbriggs
jlbriggs

Reputation: 17800

Just align them left in your settings:

 plotOptions: {
   series: {
     dataLabels: {
        enabled: true,
        inside: true,
        align: 'left'
     }
   }
 }

Fiddle:

Reference:

Upvotes: 1

Related Questions