Set default TileSpacing and Padding

4 次查看(过去 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.

采纳的回答

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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

产品


版本

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by