Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
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.