- The words default, factory, and remove are reserved words that will not appear in text when quoted as a normal characters. To display any of these words individually, precede them with a backslash, such as '\default' or '\remove'.
- If you specify this property as a categorical array, MATLAB® uses the values in the array, not the categories.
Why there is no text shown, displaying 'default', 'remove' or 'factory' in text and legend?
3 views (last 30 days)
Show older comments
MathWorks Support Team
on 17 May 2019
Answered: MathWorks Support Team
on 17 May 2019
Why there is no text shown, displaying 'default' in text and legend?
I would like to plot this here and the text 'default' is missing:
plot(1,1);
legend('default');
Accepted Answer
MathWorks Support Team
on 17 May 2019
This is not a bug and documented behavior.
Please escape 'default' with the following character '\' so it looks like:
\default
If this is not working in R2019a, do the following:
\\default
We will improve the documentation on this in the future.
The behavior is the same for 'factory' and 'remove'.
Here you can find the info in the doc:
0 Comments
More Answers (0)
See Also
Categories
Find more on Legend in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!