参考网址:
https://github.com/hoffstadt/DearPyGui/issues/80
https://gitmemory.com/sharkbound
源代码
from dearpygui.core import *
from dearpygui.simple import *
set_main_window_size(600,440)
add_tab_bar("bezier_test")
add_additional_font('中文字体.ttf', 18, glyph_ranges='chinese_simplified_common')
x1, y1 = [100,100]
x2, y2 = [100,200]
x3, y3 = [200,200]
x4, y4 = [200,100]
add_tab("第一个栏目")
add_simple_plot("Simpleplot1", value=[0.3, 0.9, 0.5, 0.3], height=300)
end()
add_tab("第二个栏目")
add_simple_plot("Simpleplot2", value=[0.3, 0.9, 2.5, 8.9], overlay="Overlaying", height=180, histogram=True)
end()
start_dearpygui()
ttf中文字体可在脚本之家下载
执行结果: