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!