C# ScottPlot解决中文乱码问题
Plot myPlot = new Plot(); myPlot.Font.Set(SKFontManager.Default.MatchCharacter('汉').FamilyName);
亲测有效
Plot myPlot = new Plot();
myPlot.Font.Set("宋体");
这个也可以
Plot myPlot = new Plot(); myPlot.Font.Set(SKFontManager.Default.MatchCharacter('汉').FamilyName);
亲测有效
Plot myPlot = new Plot();
myPlot.Font.Set("宋体");
这个也可以