legend overwriting plots,

5 views (last 30 days)
Sankar Mahadevan
Sankar Mahadevan on 5 Mar 2018
Hello,
I am trying to create a new ui layout and it seems that the legend is overwriting my plots. The axes on which I have plotted the graph is a child of a panel that I created. I cant find a way to have the legend along with the plot. It always overwrites my plot. Can someone help
fig = figure()
panel{1} = uix.BoxPanel( 'Title', 'Panel 1', 'Parent', fig );
axes1 = axes( 'Parent', panel{1})
theta = 0:360;
plot1=plot(axes1,theta, sind(theta))
legend(plot1)
  2 Comments
Greg
Greg on 5 Mar 2018
What is uix or uix.BoxPanel?
Sankar Mahadevan
Sankar Mahadevan on 5 Mar 2018
Edited: Walter Roberson on 3 Feb 2019
Hi Greg,
uix.BoxPanel creates a small panel which can be moved and an axes or figure can be placed inside it

Sign in to comment.

Answers (3)

Image Analyst
Image Analyst on 5 Mar 2018
See if there is a 'location' option of legend() that will place your legend in a good place for all possible plots that you might have to draw. For example
legend('Curve 1', 'Curve2', 'Location', 'Northwest');

Marc Olle-Bernades
Marc Olle-Bernades on 2 Feb 2019
Hi Sankar,
Did you manage to solve the issue of the legend? I have exactly the same issue, I have spent hours looking into that and I do not manage to get it correct.
Your feedback would be appreciated.
Thank you.
Best regards,
Marc
  1 Comment
Image Analyst
Image Analyst on 3 Feb 2019
Try not having your axes in panels like he did. It's worth a try.

Sign in to comment.


Marc Olle-Bernades
Marc Olle-Bernades on 3 Feb 2019
Without using axes in panels or trying with BoxPanel it does the same. The legend overlaps the plot itself and despite of moving it to other location the plot of the axes object is no longer there.

Products

Community Treasure Hunt

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

Start Hunting!