axis off in App designer
26 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Yu Li
am 7 Dez. 2018
Kommentiert: Yu Li
am 7 Dez. 2018
is there anyway to set the axis 'invisible' in App Designer?
similiar is 'axis equal'....
I looked around in the link below but could not find anyway to do that.
https://www.mathworks.com/help/matlab/ref/matlab.ui.control.uiaxes-properties.html
Yu
0 Kommentare
Akzeptierte Antwort
Cris LaPierre
am 7 Dez. 2018
Do you want the axis off or equal? Using axis equal will not turn the axis off.
Try adding this line, modifying the axis handle to match your name.
axis(app.UIAxes,'off')
4 Kommentare
Weitere Antworten (1)
Cris LaPierre
am 7 Dez. 2018
Bearbeitet: Cris LaPierre
am 7 Dez. 2018
That is correct. Turning the axis off prevents the background from showing.
In the Design View of app designer, try the following.
- Select your axes
- In the Axes Properties > Labels, remove the XLabel String and YLabel String
- In the Axes Properties > Ticks, remove the values in XTick and YTick
- If you want a box around plot, in Axes Properties > Box Styling select the Box checkbox. You can pick the box color there as well.
- You'll notice that the background color is already white (default)
In your startupFcn callback add
axis(app.UIAxes,'equal')
% if you don't want the black lines for the axes, include:
app.UIAxes.XColor = 'w';
app.UIAxes.YColor = 'w';
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!