How can I fix the legend text color?

4 views (last 30 days)
Md Zillur Rahman
Md Zillur Rahman on 3 Feb 2017
Commented: Walter Roberson on 4 Feb 2017
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.
>>

Answers (1)

Walter Roberson
Walter Roberson on 3 Feb 2017
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 Comments
Md Zillur Rahman
Md Zillur Rahman on 4 Feb 2017
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 on 4 Feb 2017
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()

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!