rouven Report post Posted November 26, 2013 Hi, is it possible to swap the x an y axes and produce a line chart which the line goes from top to bottom (instead of left to right) like the attached file ? Thx Share this post Link to post Share on other sites
Guest Rishab Report post Posted November 27, 2013 Hi,It is not possible to swap the x an y axis in a Line chart. However, as a workaround you can use the style properties to be applied on the div container to fulfill the needed scenario. The attached item is the screenshot of the same.For ex- <style> transform: rotate(90deg); -ms-transform: rotate(90deg); /* IE 9 */ -webkit-transform: rotate(90deg); /* Safari and Chrome */ </style> Please note- To display the Xaxis labels in the correct format set the value of the attribute 'labelDisplay' of the <chart> element to 'Rotate'.Hope this helps. Share this post Link to post Share on other sites