Azzera filtri
Azzera filtri

How to display Chinese character hints correctly

19 visualizzazioni (ultimi 30 giorni)
宗文
宗文 il 9 Ott 2023
Commentato: 宗文 il 21 Ott 2023
When I move my mouse over the DataTip gadget above the graph box, it appears with several small boxes instead of Chinese prompts that should appear.

Risposte (1)

T.Nikhil kumar
T.Nikhil kumar il 16 Ott 2023
Hello!
I understand that you want to know how to display Chinese script when you hover over the “Data Tip” icon above the graph instead of small boxes.
The expected behaviour is that the prompt should show ”Data Tips, in Chinese, when you hover over the “Data Tip” icon as shown in the figure below.
I would suggest you ensure that the character encoding settings in MATLAB are set correctly. The default character encoding can be set to ‘UTF-8’ which supports Chinese characters as well. You can use the following command the set its value:
feature('DefaultCharacterSet', 'UTF-8');
You can also try to set the ‘DefaultTextFontName’ property to a font that supports Chinese characters, such as Arial Unicode MS or SimSun.
set(0,'DefaultTextFontName','SimSun');
You can refer to the following documentation to understand more about setting different default fonts:
You can also try out a workaround as proposed in this documentation:
Hope this resolves your query!
  2 Commenti
宗文
宗文 il 18 Ott 2023
I fixed the
title ('中文标题')
display problem as you did, but the axtoolbar Chinese hint still didn't solve it.
宗文
宗文 il 21 Ott 2023
After I replaced the MATLAB desktop, the problem was solved.

Accedi per commentare.

Categorie

Scopri di più su Graphics Objects in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by