Set default TileSpacing and Padding

5 ビュー (過去 30 日間)
Arthur
Arthur 2023 年 5 月 5 日
コメント済み: the cyclist 2023 年 5 月 6 日
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 Center および File ExchangeAxes Appearance についてさらに検索

タグ

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by