I am migrating Excel Documents into Line of Business application into web pages. Which means everything excel can do, my client expect the telerik controls to do! On either a RadGrid or RadGantt I would like to be able to rotate the headings just like in Excel. An example is a heading like 'Days' but the actual value in that column is no bigger than 99. Another example if that the heading has a question, and the cell a check box.
Hello,
If the text rotation the CSS supports is okay, you can use that to rotate any text in any heading.
div.RadGantt .rgtTreelist .radGridHeader th {
vertical-align: middle;
white-space: normal
}
.RadGantt .rgtTreelist .radGridHeader th .k-link {
max-width: 40px;
white-space: normal;
transform: rotate(-45deg);
}
For more custom headings, you can follow the templates feedback item here:
Regards,
Peter Milchev
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.