Orient pie chart in clock wise direction
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello:
In generally, pie chart shows anti-clock wise orientation with its shades. How to orient it to clock wise direction?
0 Commenti
Risposta accettata
Voss
il 21 Lug 2023
X = [1 3 0.5 2.5 2];
Anti-clockwise (original):
pie(X)
Clockwise:
h = pie(X);
set(h(2:2:end),{'HorizontalAlignment'},get(h(end:-2:2),{'HorizontalAlignment'}))
set(gca(),'XDir','reverse')
3 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Pie Charts in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!