Orient pie chart in clock wise direction
9 ビュー (過去 30 日間)
古いコメントを表示
Hello:
In generally, pie chart shows anti-clock wise orientation with its shades. How to orient it to clock wise direction?
0 件のコメント
採用された回答
Voss
2023 年 7 月 21 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Pie Charts についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!