Filter löschen
Filter löschen

Why does my plot line appear outside the axes?

33 Ansichten (letzte 30 Tage)
Jamie Bragg
Jamie Bragg am 26 Apr. 2024
Kommentiert: Sam Chak am 6 Mai 2024
I'm trying to make a double y-axis plot of data that extends beyond the x-axis limits of the plot. When I save the plot as a .png, the plot lines appear outside the right axis of the plot.
Here's code for a simplified version of what I'm trying that produces the issue:
x = [0 1 2 3 4];
yl = [0 1 2 4 3];
yr = [0 2 3 1 2];
yyaxis left
plot(x, yl)
yyaxis right
plot(x, yr)
xlim([1 3])
saveas(gcf,'[PATH].png')
And here's the image that's saved:
I know that there's a workaround of shortening the data arrays to the range of the x-axis limits before plotting, but I was wondering if there's a more elegant solution.
  8 Kommentare
Jamie Bragg
Jamie Bragg am 29 Apr. 2024
@Adam Danz I was originally using MATLAB desktop, which is where the bug occurs. When I run the code you suggest, I get:
r =
struct with fields:
GraphicsRenderer: 'OpenGL Hardware'
Vendor: 'Intel'
Version: '4.5.0 - Build 31.0.101.4953'
RendererDevice: 'Intel(R) Iris(R) Xe Graphics'
Details: [1×1 struct]
ans =
struct with fields:
RendererDriverVersion: '31.0.101.4953'
RendererDriverReleaseDate: '2023-11-7'
HardwareSupportLevel: 'Full'
SupportsDepthPeelTransparency: 1
SupportsAlignVertexCenters: 1
SupportsGraphicsSmoothing: 1
MaxTextureSize: 16384
MaxFrameBufferSize: 16384
When using MATLAB online (Firefox), the saved PNG image doesn't have the issue. I get the same information as Sam Chak when running the commands you suggest.
Adam Danz
Adam Danz am 2 Mai 2024
@Sam Chak and @Jamie Bragg thanks for sharing this renderer information. It shows exactly what I needed to see. I'll take it from here and add this bug to our tracker. Thanks again for your help and cooperation!

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Adam Danz
Adam Danz am 6 Mai 2024
Bearbeitet: Adam Danz am 6 Mai 2024
This appears to be a bug specific to the OpenGL renderer. Thanks for reporting this issue. Investigation will continue internally.

Weitere Antworten (1)

Sam Chak
Sam Chak am 26 Apr. 2024
Because the xlim() command is used on the right y-axis plot.
x = [0 1 2 3 4];
yl = [0 1 2 4 3];
yr = [0 2 3 1 2];
yyaxis left
plot(x, yl), xlim([1 3])
yyaxis right
plot(x, yr), xlim([1 3])
% saveas(gcf,'[PATH].png')
  5 Kommentare
Sam Chak
Sam Chak am 26 Apr. 2024
@Jamie Bragg, If the image is displayed correctly in MATLAB, what happens when you save the figure again after it has been properly rendered?
Jamie Bragg
Jamie Bragg am 26 Apr. 2024
I saved the figure manually from the figure MATLAB figure window after it rendered, and looks fine!
But if I run the command to save it after it's rendered, it still has the clipping issue.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Graphics Object Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by