Some extra and useless lines around GUI!

1 次查看(过去 30 天)
Hey guys,
I ahve been trying to develop a GUI for a project. My problem is a couple of small lines perpendicular to the length and width of the GUI which are not supposed to show up. Please see the figure below.
I would greatly appreciate your help.
Thank you

采纳的回答

Jan
Jan 2019-3-12
编辑:Jan 2019-3-12
This looks the ticks of an axes object, which fills the complete figure. Either remove this axes object, if you do not need it, or remove the ticks:
AxesH = axes( ...
'Parent', FigH, ...
'Units', 'normalized', ...
'Position', [0, 0, 1, 1], ...
'Visible', 'off', ...
'XTick', [], 'YTick', [], ... % <---
'NextPlot', 'add', ...
'HitTest', 'off');
It would be useful to mention, if you create the GUI by GUIDE, AppDesigner or programmatically.
  5 个评论
Masoud Kavoosi
Masoud Kavoosi 2019-3-13
You are right. Actually, I created this axes just to have a background color in my GUI, other than that they do not do anything special for me. And, I created this GUI using GUIDE in MATLAB.
Jan
Jan 2019-3-13
You can set the background color of the figure directly.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by