Make UIAxes Background invisible or hide it in APP Designer
11 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I want to hide completely a uiaxes in my app. I first hided the Axes (easy)
app.UIAxes.Visible = 'off';
But still the background is present, i used a second command to change background color to "none". But it throws an error. ANy solutions please ?
set(app.UIAxes,'BackgroundColor','none')
Error in V_1_APP/PassiveElementsButtonPushed (line 1573)
set(app.UIAxes,'BackgroundColor','none')
Error using matlab.ui.control.internal.controller.ComponentController/executeUserCallback (line 382)
Error while evaluating Button PrivateButtonPushedFcn.
0 件のコメント
採用された回答
Ameer Hamza
2020 年 9 月 21 日
It seems that the background color of a UIAxes cannot be set to 'none'. See the attached app for an alternative. It set the background color to the color of the figure window.
0 件のコメント
その他の回答 (1 件)
Benjamin Kraus
2020 年 11 月 11 日
This behavior of uiaxes has changed in MATLAB R2020b.
BackgroundColor property of UIAxes has no effect
Setting the BackgroundColor property on a UIAxes object no longer has any effect. The area around the plot box is transparent regardless of the value of the BackgroundColor property.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!