In Matlab App designer eliminate the gray edge of an "Axes" component
1 次查看(过去 30 天)
显示 更早的评论
Hi Community! For the "Axes" component in Matlab App designer, as
Is it possible to make the white area occupy the entire "Axes" component and eliminate the gray edge area? Seems adjusting the "position" parameter can't solve the problem.
0 个评论
采纳的回答
Simon Chan
2022-10-9
Set the figure color to white.
f = figure;
f.Color=[1 1 1]; % Set color to white
3 个评论
Simon Chan
2022-10-10
Could you find something like the following regarding the uifigure appearance?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop uifigure-Based Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!