Clear Filters
Clear Filters

How to display Chinese character hints correctly

19 views (last 30 days)
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.

Answers (1)

T.Nikhil kumar
T.Nikhil kumar on 16 Oct 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 Comments
宗文
宗文 on 18 Oct 2023
I fixed the
title ('中文标题')
display problem as you did, but the axtoolbar Chinese hint still didn't solve it.
宗文
宗文 on 21 Oct 2023
After I replaced the MATLAB desktop, the problem was solved.

Sign in to comment.

Categories

Find more on Graphics Objects in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!