I want to show my header text vertically to save horizontal space. What is the best way to accomplish this using 2014.2?
Hello rsimm.
Thank you for contacting us!
As I understand you want to align the text within igGrid headers vertically. I have created a sample for you in order to show you this approach. As you can see from the sample I am overriding the css class .ig-iggrid-headertext with:
.ui-iggrid-headertext { display: inline-block; vertical-align: middle; white-space: normal; }
Online sample:
http://jsfiddle.net/zdravko/hbo3xbrb/2/
I hope that you will find the sample helpful.
Thank you for the response, but I am not trying to set the vertical alignment. I want to actually rotate the header text vertically (so that it takes up less space horizontally)...like a transform: 'rotate(-90deg)' would do.