Legend title only without marker and lines of data

169 次查看(过去 30 天)
Hi all, Are there any way to get rid of data related marks and only display title of the legend. Any suggestion would be great.
  4 个评论
David Fletcher
David Fletcher 2018-4-21
You could get the handle to the legend; get its position property; then set the position of the text to be the same position as the legend. Or if you want the text to just be somewhere upper right of the graph, set the Units property of the text object to 'normalized' and somewhere around 0.9,0.9 would be around the upper right corner.
Maniraj M
Maniraj M 2018-4-21
编辑:Maniraj M 2018-4-21
Well, thanks for your suggestion. But, I have tried already this idea and is not fulfilling the requirements for handling large number of figures. I could not use figure frame as input for text, when one has some plot. I am mainly looking for simplest option to keep text at right-side top (irrespective of range of scale values used for plots). Some time it feels that matlab is oversimplified.

请先登录,再进行评论。

采纳的回答

David Fletcher
David Fletcher 2018-4-21

Looks like the text position is consistently in the upper right (irrespective of range scale values) to me, but if you say you've tried it and it's not fulfilling your requirements then fair enough. I can't say I have any other ideas.

for iter=1:30
    dataX=randi(randi(100,1,1),1,randi(30,1,1))
    dataY=randi(randi(100,1,1),1,length(dataX))
    figure(iter)
    plot(dataX,dataY)
    text(0.9,0.9,'tst','Units','normalized')
end
  1 个评论
Maniraj M
Maniraj M 2018-4-22
Thanks a lot. The 'Units','normalized' was missing in my code. I miss understood that if I normalized the figure window, it will be for all. my bad. This part keeps the text at correct position.

请先登录,再进行评论。

更多回答(1 个)

Walter Roberson
Walter Roberson 2018-4-21
dummyh = line(nan, nan, 'Linestyle', 'none', 'Marker', 'none', 'Color', 'none');
legend(dummyh, 'One legend entry to rule them all!')

This will leave empty space for the line, but there will still be a gap 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