0

I'm using DOJO column charts in my application. Here i have a requirement to display the value on top of the bar. That can be achieved using the label property. After doing this i had another problem i.e. If the value is large then all values are getting overlapped as shown below

enter image description here

In order to overcome this overlapping issue i was trying to display the label in vertical direction. Can you guys help me solving this issue

2
  • May be this link might help
    – frank
    Commented Jan 20, 2015 at 14:25
  • Can you add your code for the chart so I can see how you are defining your labels?
    – user4103576
    Commented Jan 20, 2015 at 15:02

1 Answer 1

0

You can rotate the labels using the "rotation" attribute when you create the axis For example:

chart.addAxis("x", {labels: xLabels, rotation: 90});

Not the answer you're looking for? Browse other questions tagged or ask your own question.