Is it possible to change stackedplots background color?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Goncalo Torres
il 18 Ott 2019
Modificato: Adam Danz
il 24 Nov 2020
I have been developing apps with stackedplots, but I can't find a way to change the background color (white by default).
I guess is not implemented for this type of plots, so I was wondering if there is any other trick I can use.
0 Commenti
Risposta accettata
Devineni Aslesha
il 29 Ott 2019
As of now, changing the background color in stackedplot is not supported in AppDesigner -> uifigure for the available MATLAB releases. However, the concerned parties may be looking into it and might be added in the future releases.
0 Commenti
Più risposte (1)
Adam Danz
il 19 Nov 2020
Modificato: Adam Danz
il 24 Nov 2020
You can get the axis handles in stackedplot using the undocumented NodeChildren property. Then change background color.
rng('default')
h = stackedplot(rand(100,4));
ax = findobj(h.NodeChildren, 'Type','Axes');
set(ax,'Color',[.8 .8 .8])
To set the color of a selected axis number n,
% set(ax(n), ...)
Vedere anche
Categorie
Scopri di più su Errorbars in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!