Completed
Last Updated: 24 Feb 2021 17:15 by ADMIN
Doug
Created on: 09 Jul 2015 09:17
Category: Gantt
Type: Feature Request
5
Rotate cell heading text like in Excel
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.
2 comments
ADMIN
Peter Milchev
Posted on: 24 Feb 2021 17:15

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/.

Ali
Posted on: 21 Jul 2019 05:33
I totally agree with this option.