Set default TileSpacing and Padding
11 次查看(过去 30 天)
显示 更早的评论
Hi, is it possibleto set default TileSpacing and Padding for TiledChartLayout properties?
I tried to use
set(groot, 'something')
but I can't figure out what "something" is.
Thank you.
0 个评论
采纳的回答
the cyclist
2023-5-5
Here's how to get the current default setting, which you can then set as you wish.
get(groot,"defaultTiledlayoutPadding")
get(groot,"defaultTiledlayoutTileSpacing")
3 个评论
the cyclist
2023-5-6
To see all the factory-defined property values ...
get(groot,'factory');
To see those related to tiledLayout objects
get(groot,'factoryTiledLayout');
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!