How do I label the R-axis in a polar plot?
25 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2017 年 1 月 10 日
編集済み: MathWorks Support Team
2023 年 5 月 19 日
How do I label the R-axis in a polar plot?
採用された回答
MathWorks Support Team
2023 年 5 月 17 日
編集済み: MathWorks Support Team
2023 年 5 月 19 日
In R2016a and later releases, after having created a polar axes (via the "polaraxes" function directly or as a result of creating a polar plot via the "polarplot" function), you can get the "RAxis" property of that polar axes. The "RAxis" object has a property named "Label" that contains a "Text" object, which has a property named "String". For details about the "RAxis" property, refer to the following link:
To modify the r-axis label, you can adapt the following example code:
ax = polaraxes;
ax.RAxis.Label.String = 'My Label';
The "RAxis" property is a Numeric Ruler. To further manipulate the r-axis, you can modify the Numeric Ruler Properties of "ax.RAxis". For details, refer to the following link:
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Polar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!