I'm trying to plot my chart having 2 y-axes. I want one of them to be reversed. The chart signifies the "page rank" and "number of hits" vs the "Date Range". I want the Rank to be in reverse order (1 at the top and Max_Rank on the x-axis). I tried changing the graph style xml
<yAxis isReversed = "true">
and
<yAxis2 isReversed = "false">
but the chart is plotted based on <yAxis>
order only. How should I modify the xml?
Edit 1 (for Clarity) : I had generated the XML with the Webcharts Util tool but it didn't work. As part of troubleshooting the issue, I tried manipulating the XML manually like <yAxis2 isReversed = "false">
but still no luck. Hence, reaching out for any other way for achieving the same.