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

12 visualizzazioni (ultimi 30 giorni)
Is there some equivalent to set(gca, 'FontSize',xy)?

Risposte (1)

Adam Danz
Adam Danz il 23 Set 2020
Modificato: Adam Danz il 28 Set 2020
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

Categorie

Scopri di più su Graphics Object Programming 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!

Translated by