legend overwriting plots,

3 次查看(过去 30 天)
Sankar Mahadevan
Sankar Mahadevan 2018-3-5
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 个评论
Greg
Greg 2018-3-5
What is uix or uix.BoxPanel?
Sankar Mahadevan
Sankar Mahadevan 2018-3-5
编辑:Walter Roberson 2019-2-3
Hi Greg,
uix.BoxPanel creates a small panel which can be moved and an axes or figure can be placed inside it

请先登录,再进行评论。

回答(3 个)

Image Analyst
Image Analyst 2018-3-5
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
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 个评论
Image Analyst
Image Analyst 2019-2-3
Try not having your axes in panels like he did. It's worth a try.

请先登录,再进行评论。


Marc Olle-Bernades
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.

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by