In Matlab App designer eliminate the gray edge of an "Axes" component

1 view (last 30 days)
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.

Accepted Answer

Simon Chan
Simon Chan on 9 Oct 2022
Set the figure color to white.
f = figure;
f.Color=[1 1 1]; % Set color to white
  3 Comments
Simon Chan
Simon Chan on 10 Oct 2022
Could you find something like the following regarding the uifigure appearance?

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!