There is no InnerPosition property on the matlab.graphics.layout.TiledChartLayout class.
4 次查看(过去 30 天)
显示 更早的评论
Any idea how to solve this error?
t = tiledlayout(2,2,'InnerPosition',[0.1300 0.1100 0.7750 0.8150]);
here is the error:
Error using matlab.graphics.chart.ChartInputParser/parseNameValue
There is no InnerPosition property on the matlab.graphics.layout.TiledChartLayout class.
Error in tiledlayout
Also tried this:
t = tiledlayout(2,2);
t.InnerPosition=[0.1300 0.1100 0.7750 0.8150];
and recieved error:
Unrecognized property 'InnerPosition' for class 'matlab.graphics.layout.TiledChartLayout'.
Error in kharrrr (line 10)
t.InnerPosition=[0.1300 0.1100 0.7750 0.8150];
3 个评论
回答(1 个)
Tommy
2020-4-17
It looks like a handful of properties for TiledChartLayout objects, including 'Position', 'InnerPosition', and 'OuterPosition', were not added until 2020a.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Condensed Matter & Materials Physics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!