Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Hi,
Is it possible to do chart orientation from horizontal to vertical
All examples that are provided are horizontal, from left to right or right to left.
Is there a way to display the chart in vertical from top to bottom,
Please see the attachment
Hi
Any update on this ?
If there is no direct way of doing it, is there an indirect way of doing this ?
Thanks in advance
You could use CSS to rotate the div:
div#chart {
transform-origin:
30%
70%
;
-ms-transform: rotate(
90
deg);
/* IE 9 */
-webkit-transform: rotate(
/* Safari */
transform: rotate(
/* Standard syntax */
}
DEMO
Thank you very much for your help and sample code. it really helps.