I want to resize font of the power of ten of plot.

2 ビュー (過去 30 日間)
poni_poni
poni_poni 2021 年 2 月 2 日
コメント済み: poni_poni 2021 年 2 月 5 日
Hello ... Thank you for everything.
I would like to reduce the font size of the graph, 10^7, because the title is too long and it gets in the way of the title.
I know that I can change the font size of the title and the names of the axes.
I know that I can change the font size of the title and the name of the axis, and I know that I can change the font size of the numbers on the axis.
However, I don't know how to reduce the font size of the powers only.
I do not want to change the units of the vertical axis if possible.
Is there any good way to do this?

採用された回答

dpb
dpb 2021 年 2 月 2 日
編集済み: dpb 2021 年 2 月 2 日
hAx=gca;
hYAx=hAx.YAxis; % handle to Y axes numeric ruler object
hYExpText=hYAx.NodeChildren(1); % handle to the Y axes exponent text object
hYExpText.FontSize=8; % set that object fontsize alone
Thanks to Yair Altman's FEX submission <getundoc: Get-undocumented-object-properties>
This would seem to be worth an enhancement request to add to the visibile NumericRuler object properties.
  1 件のコメント
poni_poni
poni_poni 2021 年 2 月 5 日
Thank you very much.
Thanks to you, I was able to solve the problem!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

製品


リリース

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by