Error in matlab.graphics.chart.StackedLineChart/get.AxesProperties
2 次查看(过去 30 天)
显示 更早的评论
I want to specify Y limits for every plots in the stackedplot graph using the script below, as well as modify the x axes format. I was following the procedures in here https://uk.mathworks.com/help/matlab/ref/matlab.graphics.chart.internal.stackedplot.stackedaxesproperties-properties.html but none worked.
nearfield = [21418 21413 21419 21416 21415];
new = {};
for i=1:length(nearfield)
newYlabels = {nearfield(i)};
new = [new newYlabels];
end
figure
s=stackedplot(tm(1:halfdat),urutan(3:halfdat+2,1:5),...
'DisplayLabels',new);
s.LineWidth=1;
c = s.AxesProperties(3).YLimits
so far only the last line that didn't work. Anyone knows what happened and how to solve this? Thanks
8 个评论
Walter Roberson
2020-8-16
If you comment out the xlabel() do you get the same problem?
Which release are you using?
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!