Set default TileSpacing and Padding

조회 수: 11 (최근 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 CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by