Clear Filters
Clear Filters

Set default TileSpacing and Padding

4 views (last 30 days)
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.

Accepted Answer

the cyclist
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")
ans = 'loose'
get(groot,"defaultTiledlayoutTileSpacing")
ans = 'loose'
  3 Comments
Arthur
Arthur on 5 May 2023
The command
get(groot, 'default')
only gives very few options. And it seems to include the ones I customized.
the cyclist
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');
This is discussed near the bottom of this documentation page.

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products


Release

R2023a

Community Treasure Hunt

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

Start Hunting!