How do you remove the exponent from all y-axes on a stackploted figure?
Show older comments
I am trying to change my y-axes so that each one is a decimal instead of #x10^-4. How can I make this change for a stackedplot?
Accepted Answer
More Answers (1)
Actually, the above isn't true; it turns out you CAN get to the underlying axes objects and they are still "plain, ordinary axes".
I thought I had looked at this before but apparently my recollections were flawed. Try...ohhhh--now, I remember why I had the recollection, even findall won't return the axes from the standalone visualization that it will with hidden handles of regular plots. I don't have time to dig into that at the moment, but the following will work...
hS=stackedplot(....);
hAx=findobj(hS.NodeChildren,'Type','axes'); % find the axes handles that are hidden under NodeChildren
for h=hAx.' % iterate over the collection/array
try % don't crash for a nonnumeric y axes handle
h.YAxis.Exponent=0; % set exponent
h.YAxis.TickLabelFormat='%.0f'; % and to %f format (default is %g)
catch % keep on going if errors on one or more...
end
end
Address the individual axes with the subscripting to the axes array.
NOTA BENE: The above will only provide satisfactory results for exponents >0; more subtle logic will be needed to handle general case well.
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!