How can I change the default settings for the 'linewidth' property before I plot a figure in MATLAB?
125 次查看(过去 30 天)
显示 更早的评论
I would like to change the 'LineWidth' property for all my figures by default for my current session of MATLAB.
采纳的回答
MathWorks Support Team
2017-1-31
You can set the default MATLAB linewidth property by setting the 'DefaultLineLineWidth' property of the root graphics object. When new lines are created, they will inherit this property from the root object.
set(0, 'DefaultLineLineWidth', 2);
For more information on setting default properties consult,
1 个评论
Steven Lord
2020-5-6
stairs returns a different type of graphics object than line. It creates a Stair object not a Line object.
figure
stairs(1:10, 1:10);
title('Before change')
% set(groot, 'DefaultStairLineWidth', 2)
objectType = 'Stair';
propertyName = 'LineWidth';
set(groot, ['Default', objectType, propertyName], 2)
figure
stairs(1:10, 1:10);
title('After change')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!