Set default TileSpacing and Padding
6 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
the cyclist
on 5 May 2023
Here's how to get the current default setting, which you can then set as you wish.
get(groot,"defaultTiledlayoutPadding")
get(groot,"defaultTiledlayoutTileSpacing")
3 Comments
the cyclist
on 6 May 2023
To see all the factory-defined property values ...
get(groot,'factory');
To see those related to tiledLayout objects
get(groot,'factoryTiledLayout');
More Answers (0)
See Also
Categories
Find more on Axes Appearance in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!