Heatmap title - Interpreter (AppDesigner)

5 ビュー (過去 30 日間)
Jason
Jason 2020 年 11 月 18 日
回答済み: Benjamin Kraus 2023 年 9 月 20 日
Hello, I don't seem to be able to allow underscores in the title of heatmaps (Im using filenams that have underscores in them)
h1.Title = file;
set(h1,'Interpreter','tex');
I have read post's saying that it was not possible but they were dated 2017...I was wondering if was now possible
Thanks
Jason

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 11 月 18 日
It still does not support Interpreter. The workaround is to escape the underscore character
h1.Title = strrep(file, '_', '\_')
  2 件のコメント
Jason
Jason 2020 年 11 月 18 日
Perfect, thankyou
Ameer Hamza
Ameer Hamza 2020 年 11 月 18 日
I am glad to be of help!

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

その他の回答 (1 件)

Benjamin Kraus
Benjamin Kraus 2023 年 9 月 20 日
Starting in MATLAB R2023b, the HeatmapChart now has an Interpreter property.
h1 = heatmap(magic(4));
h1.Title = 'file_name';
h1.Interpreter = 'none';

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by