How do you remove the exponent from all y-axes on a stackploted figure?
6 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
采纳的回答
dpb
2023-2-16
移动:dpb
2023-2-16
Some things aren't possible; that's one....see the discussion about what a stackedplot object is in the doc --
s=StackedLineChart object, which is a standalone visualization. Use s to set properties on the stacked plot after creating it.
...
Standalone Visualization
A standalone visualization is a chart designed for a special purpose that works independently from other charts. Unlike other charts such as plot and surf, a standalone visualization has a preconfigured axes object built into it, and some customizations are not available. ...
Unfortunately, the exposed properties (as you've undobtedly discovered) don't include those pieces of the axes object; the axes has been neutered drastically as to what you can get a handle to, and thereby change.
0 个评论
更多回答(1 个)
dpb
2023-2-16
编辑:dpb
2023-2-17
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!