- 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?
2 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2019-5-17
回答: MathWorks Support Team
2019-5-17
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');
采纳的回答
MathWorks Support Team
2019-5-17
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!