plot and left axis off
Show older comments
When I plot it comes with both axes in the box. How can I plot by removing right axis (or vertical line) of Box? can you please help me?
x=(1:1:10);
y= (1:2:20);
figure (1);
plot (x,y,'o-');
4 Comments
Scott MacKenzie
on 14 Jun 2021
Your description is a bit vague. Is this what you are looking for...

Babu Sankhi
on 14 Jun 2021
Edited: Babu Sankhi
on 14 Jun 2021
Scott MacKenzie
on 14 Jun 2021
Edited: Scott MacKenzie
on 14 Jun 2021
x = (1:1:10);
y = (1:2:20);
figure (1);
plot (x,y,'o-');
ax = gca;
ax.Box = 'off';
I don't think it's possible to remove just the right box border.
One thing you can do is move the border away from the plot by setting XLim. If your goal is just to create space for annotations to add to the plot, this might work:
x = (1:1:10);
y = (1:2:20);
figure (1);
plot (x,y,'o-');
ax = gca;
ax.XLim = [1 15];

Adam Danz
on 14 Jun 2021
Babu Sankhi's answer moved here as a comment.
yes you are right I want to add another plot by removing the right boarder. Can please give me the more idea about it how can get the plot like this as attched below? thank you

Answers (1)
Turn off right-y-axis
This solution is similar to another answer provided a few days ago. It uses yyaxis to add a second, independent y-axis on the right and then turns the color off for that axis.
x=(1:1:10);
y= (1:2:20);
figure (1);
plot (x,y,'o-');
yyaxis right
ax = gca();
ax.YAxis(2).Color = 'none';
yyaxis left % return focus to 'main' axis.
Join 2 axes, control the center border line
This version joins 2 axes, turns off the y-axes in the center of the two axes, formats the left-y-axis of the right-axes as a dashed line, and then links the two sets of y-axes so they always have the same y-limit.
The juxtaposition of the axes uses TiledLayout with zero-tile-spacing which requires Matlab r2021a (see Community Highlight). For versions of Matlab prior to R2021a, create the two axes using the axes command and set their position properties (see version-2 below).
x = 0:0.1:10;
y = gaussmf(x,[2 5]);
figure()
tiledlayout(1,2,'TileSpacing','none'); % Requires Matlab r2021a or later
ax1 = nexttile();
plot(ax1, x,y)
yyaxis(ax1,'right')
ax1.YAxis(2).Color = 'none';
yyaxis(ax1,'left') % return focus to 'main' axis.
xlabel('Left Axis')
ax2 = nexttile();
plot(ax2, x,y)
yyaxis(ax2,'right')
ax2.YAxis(2).Color = ax1.YAxis(1).Color;
ax2.YAxis(2).TickLabels = []; % Turn off right tick labels
yyaxis(ax2,'left') % return focus to 'main' axis.
ax2.YAxis(1).TickValues = [];
ax2.YAxis(1).Axle.LineStyle = 'dashed';
linkaxes([ax1,ax2],'y') % link both sets of y-axis limits
xlabel('Right Axis')
Version-2 using custom axes instead of TiledLayout
x = 0:0.1:10;
y = gaussmf(x,[2 5]);
figure()
margins = [.13 .11 .25]; % [left&right, bottom, top], normalized units
ax1 = axes('Units','Normalize','Position',[margins(1:2),.5-margins(1),1-margins(3)]);
plot(ax1, x,y)
yyaxis(ax1,'right')
ax1.YAxis(2).Color = 'none';
yyaxis(ax1,'left') % return focus to 'main' axis.
xlabel('Left Axis')
ax2 = axes('Units','Normalize','Position',[.5,margins(2),.5-margins(1),1-margins(3)]);
plot(ax2, x,y)
yyaxis(ax2,'right')
ax2.YAxis(2).Color = ax1.YAxis(1).Color;
ax2.YAxis(2).TickLabels = []; % Turn off right tick labels
yyaxis(ax2,'left') % return focus to 'main' axis.
ax2.YAxis(1).TickValues = [];
ax2.YAxis(1).Axle.LineStyle = 'dashed';
linkaxes([ax1,ax2],'y') % link both sets of y-axis limits
xlabel('Right Axis')
Additional recommendations
- Set the x-ticks to avoid the overlap at the x-limits.
- Turn the grid on for both pairs of axes (yyaxis left)
8 Comments
Babu Sankhi
on 14 Jun 2021
Edited: Babu Sankhi
on 14 Jun 2021
Babu Sankhi
on 14 Jun 2021
Edited: Babu Sankhi
on 14 Jun 2021
> your idea about the tielspacing does not work for me
From my answer, "For versions of Matlab prior to R2021a, create the two axes using the axes command and set their position properties."
For example, axes('Units','Normalize','Position',[----]). You just need to set the positions of the two axes so they are next to each other. The positions are 1x4 vectors defining
- Distance from the left of the figure (normalized coordinates)
- Distance from the bottom of the figure
- Width
- Height
> I want to make left axis off, it does not work
Actually your question was "How can I plot by removing right axis? " but my answer shows how to turn off both the right and left axes. You haven't followed the example correctly. Try to copy the example as close as possible including the use of axis handles and the order that you're accessing the left and right y-axes. I don't know how else to show you without writing the exact example I already have in my answer. You applied it incorrectly so go line-by-line comparing your version with mine and try to think about what each line is doing.
Babu Sankhi
on 15 Jun 2021
I'm happy to help.
You need to use the 2nd block of code in my answer (under "Join 2 axes, control the center border line").
All you need to do is
- Copy-paste the entire block of code except for the first two lines (you don't need x=..., y=...).
- Replace this line plot(ax1, x,y) with plot(ax1,x1,y1)
- Replace this line plot(ax2, x,y) with plot(ax2,x2,y2)
That's it. It's really that simple.
Babu Sankhi
on 16 Jun 2021
Categories
Find more on Graphics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
