QPolarChart change axis orientation
-
My goal is to use
QPolarChartfromQt Chartslibrary, but with different orientation of polar axes.
I.e. axesr(distance) pointing right and\theta(angle) axis getting positive values counter-clock-wise.In detail: Official Qt examples show
QPolarChartas follows (see Picture below). I.e. theraxis orientated as bottom-top (i.e. asYaxis, pointing to top) and\thetaaxis getting positive values when rotating clock-wise (i.e. positive values are rotated clock-wise).
My goal though is to have
QPolarChartlooking like on the picture below, which means (1) theraxis points right (i.e. orientated asXaxis, instead of pointing top as by default), (2) positive values of\thetaangle are counted counter-clock-wise (instead of clock-wise for positive by default):
For this I would need either to rotate the plot 90 degrees around the center clock-wise, and then "mirror" the plot (i.e. rotate a plot around
Xaxis 180 degrees), or maybe some elegant solution exists. Rotating the whole chart can be done, but it also rotates chart title, and everything else. When rotating my goal would be to rotate "axes" and plot only. Cannot find anything related toQPolarChartin this respect..Thanks in advance!