I am looking for a way to implement a vertical chart. Practically rotate it 90 deg. As of now i have not found a setting for that. I am curently useing css transform rotate. but it is very messy for me.
Exmaple attached as a file.
2 Answers, 1 is accepted
0
Accepted
Tsvetomir
Telerik team
answered on 18 Feb 2021, 12:06 PM
Hi,
The default layout for the Kendo UI Chart widgets is horizontal. There is no property that rotates it due to the fact that the charts are effectively SVG elements.
What I can recommend is that you actually wrap the whole widget inside a div HTML element and apply the transform CSS rule there.
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/.
The default layout for the Kendo UI Chart widgets is horizontal. There is no property that rotates it due to the fact that the charts are effectively SVG elements.
What I can recommend is that you actually wrap the whole widget inside a div HTML element and apply the transform CSS rule there.
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/.
[/quote]
Thank you for the answer it confirmed the route I took from the begining.