How can I fix the legend text color?

1 次查看(过去 30 天)
I have generated legends using Matlab 2016b and Matlab 2013b. However, the quality of the default legend text color is not good in 2016b (see the first image). Legend texts were not even legible after printing. How I get the legend text color in 2016b as same as the default legend text color of 2013b (see the second image)? Please let me know. Thank you very much.
>>

回答(1 个)

Walter Roberson
Walter Roberson 2017-2-3
Try asking for more than one output from legend(). That will trigger it to use a different way of building the text -- and if it is still not quite right then the handles in the second output can be used to change the properties.
  4 个评论
Md Zillur Rahman
Md Zillur Rahman 2017-2-4
I have solved the issue. I needed to make sure ''visible'' ''on'' in the following line. Thank you very much for your solution.
style = @(LineStyle, MarkerStyle) plot(0,0,LineStyle,'Marker',MarkerStyle,'visible','off')
Walter Roberson
Walter Roberson 2017-2-4
visible on or off would not cause problems with the legend() call, but without the "hold on" the second call to style() is going to remove the output of the first call to style, leading to you passing deleted handles into legend()

请先登录,再进行评论。

类别

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