フィルターのクリア

Default title color for tiledlayout

9 ビュー (過去 30 日間)
Selim Öngüdü
Selim Öngüdü 2022 年 8 月 19 日
コメント済み: Selim Öngüdü 2022 年 10 月 7 日
Hi,
I am using the following code to make all my figures black with white text.
set(0,'DefaultFigureColor',[0 0 0])
set(0,'DefaultAxesColor',[0 0 0])
set(0,'DefaultAxesXColor',[1 1 1])
set(0,'DefaultAxesYColor',[1 1 1])
set(0,'DefaultAxesZColor',[1 1 1])
set(0,'DefaultTextColor',[1 1 1])
set(0,'DefaultAxesGridColor',[1 1 1])
set(0,'defaultAxesXGrid','on')
set(0,'defaultAxesYGrid','on')
This works. When I make tiledlayouts the titles of the individual tiles are white like I want, but the title for the whole tiledlayout is grey. I am using the following code.
figure('WindowState','maximized')
tlo = tiledlayout(3,3,"Padding","compact","TileSpacing","compact");
% Plotting...
title(tlo,'myTitle')
I know that I can use
title(tlo,'myTitle','Color',[1 1 1])
,but I want the title color to be white by default. I attached a picture of one of the tiles that shows how my plot looks currently. You can bearly see the title of the tiledlayout on the top which is "Gesamtverluste".
Thanks in advance.
Selim

回答 (1 件)

Shivansh
Shivansh 2022 年 10 月 7 日
Presently there is no way to set the default color of the title of a tiledlayout. But I have passed this issue to the teams concerned, they might consider this for future releases.
  1 件のコメント
Selim Öngüdü
Selim Öngüdü 2022 年 10 月 7 日
Ok, thank you.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLabels and Annotations についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by