Oxyplot 可以在单元测试库 (C#) 中使用吗
Can Oxyplot be used in a Unit Test Library (C#)
我正在创建一个没有用户界面的 C# 库,作为单元测试库的一部分,我想从单元测试中生成的数据中保存这些图形图像。
目前我将结果写入 excel 文件并手动生成图表,我希望自动保存图像。
找到答案 -
//注意输入结果一定要加上series和axis...
PlotModel model = new PlotModel() { Title = "Sample"};
model.IsLegendVisible = true;
model.LegendPosition = LegendPosition.RightMiddle;
model.LegendPlacement = LegendPlacement.Outside;
model.PlotType = PlotType.XY;
using (var stream = File.Create(Environment.CurrentDirectory + "/image.png"))
{
OxyPlot.Wpf.PngExporter exporter = new OxyPlot.Wpf.PngExporter() { Width = 2200, Height = 1400, Resolution = 200 };
exporter.Export(model, stream);
}
我正在创建一个没有用户界面的 C# 库,作为单元测试库的一部分,我想从单元测试中生成的数据中保存这些图形图像。 目前我将结果写入 excel 文件并手动生成图表,我希望自动保存图像。
找到答案 - //注意输入结果一定要加上series和axis...
PlotModel model = new PlotModel() { Title = "Sample"};
model.IsLegendVisible = true;
model.LegendPosition = LegendPosition.RightMiddle;
model.LegendPlacement = LegendPlacement.Outside;
model.PlotType = PlotType.XY;
using (var stream = File.Create(Environment.CurrentDirectory + "/image.png"))
{
OxyPlot.Wpf.PngExporter exporter = new OxyPlot.Wpf.PngExporter() { Width = 2200, Height = 1400, Resolution = 200 };
exporter.Export(model, stream);
}