5

Is it possible to put the Label of the Bar under it in a HorizontalBar layout?

Most of the examples I see online usually state putting the bar's label inside the bar, I haven't really seen one that places the label either on top or under the bar.

Like this

 yAxes: [{
      ticks: {
        mirror: true,
             }

Here's what I've done so far

https://jsfiddle.net/knyut1db/

RoboKy
  • 141
  • 1
  • 10

1 Answers1

5

My bad, I overlooked the labelOffset in the documentation.

ticks: {
   mirror: true,
   labelOffset: 50
       }
RoboKy
  • 141
  • 1
  • 10