How to display Chinese character hints correctly
11 views (last 30 days)
Show older comments
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.
0 Comments
Answers (1)
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!
See Also
Categories
Find more on Matrix Indexing 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!