How do I change the font size of the axes in a stacked plot?

16 ビュー (過去 30 日間)
Nadine G
Nadine G 2020 年 9 月 23 日
編集済み: Adam Danz 2020 年 9 月 28 日
Is there some equivalent to set(gca, 'FontSize',xy)?

回答 (1 件)

Adam Danz
Adam Danz 2020 年 9 月 23 日
編集済み: Adam Danz 2020 年 9 月 28 日
Use the stackedplot handle.
h = stackedplot(T);
h.FontSize = 12;
% or
set(h, 'FontSize', 12)
If you don't have access to the stackedplot object and you have a really good reason why it's impossible to add the handle output to the stackedplot function, you can get the handle using,
h = findobj(gcf,'type','stackedplot');
Example

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by