Displaying Date on X axis vertically

Is there an option to make the X axis labels display vertically? Currently I have dates with times, and they are overlapping.

See attachment.

Thanks.


In Dashboard Designer go to Dashboard -> Advanced and insert the following line just before where it says “return true;”

config.categoryAxis.labels = { rotation: -90};

Thanks that works.

However, I also lost my format when I put that line of code in, so I ended up adding the formatting in the config to keep the formatting with:

config.categoryAxis.labels = { rotation: -30, format: ‘{0:yyyy/MM/dd hh:mm tt}’};

Is there a documentation where I can see all the attributes the config accepts?