Is it possible that the text direction of title goes vertical and not horizontal?
Hi @Claus_Kessel,
This is not possible.
You can try with adding the following CSS rule to your application:
.rz-column-title {
writing-mode: tb;
text-orientation: upright;
}
It will make the headers to look like this:
You can also try just
.rz-column-title {
writing-mode: tb;
}
which leads to:
or even:
.rz-column-title {
writing-mode: tb;
transform: rotate(180deg);
}
Sorry for revisiting such an old post, but I have the same question/problem. I am trying to rotate the text and the last option shown below would work perfectly, but I can not find where to insert the code, should this be in the styles.css file? Thank you for the support!
.rz-column-title {
writing-mode: tb;
transform: rotate(180deg);
Yes, you can append it to your styles.css file. Just make sure styles.css is included after the Radzen Blazor theme CSS file.
Thank you, that worked, but I failed to mention that I am trying to rotate the text for only 1 datagrid in a specific page (ProjectTask)
Thank you!