Why there is no text shown, displaying 'default', 'remove' or 'factory' in text and legend?

2 次查看(过去 30 天)
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
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:
  • 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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by