赞
踩
ScottPlot是一个免费的开源交互式绘图库,适用于 .NET。它具有适用于 Windows 窗体、WPF、Avalonia 和 Eto 窗体的用户控件,它甚至可以在服务器环境或控制台应用程序中将绘图生成为图像文件。ScottPlot 面向 .NET Standard 2.0,因此它可以在 .NET Framework 和 .NET Core 应用程序中使用。ScottPlot 的 API 模仿Python 的Matplotlib,大多数绘图都可以用一行代码创建(使用可选参数来自定义样式)。
ScottPlot Cookbook是与用于创建它们的源代码配对的样本图的广泛集合。查看图表控件是调查 ScottPlot 功能并学习如何使用它的最佳方式。ScottPlot 演示应用程序中提供了每个图表的交互式版本。
ScottPlot.WinForms
NuGet 包- double[] dataX = new double[] { 1, 2, 3, 4, 5 };
- double[] dataY = new double[] { 1, 4, 9, 16, 25 };
- var plt = new ScottPlot.Plot(400, 300);
- plt.AddScatter(dataX, dataY);
- plt.SaveFig("quickstart.png");
FormsPlot
工具箱中的 a 拖到表单上- // generate some random X/Y data
- int pointCount = 500;
- Random rand = new Random(0);
- double[] xs1 = ScottPlot.DataGen.RandomWalk(rand, pointCount);
- double[] ys1 = ScottPlot.DataGen.RandomWalk(rand, pointCount);
- double[] xs2 = ScottPlot.DataGen.RandomWalk(rand, pointCount);
- double[] ys2 = ScottPlot.DataGen.RandomWalk(rand, pointCount);
-
- // plot the data
- formsPlot1.Plot.PlotScatter(xs1, ys1);
- formsPlot1.Plot.PlotScatter(xs2, ys2);
-
- // additional styling
- formsPlot1.Plot.Title($"Scatter Plot ({pointCount} points per group)");
- formsPlot1.Plot.XLabel("Horizontal Axis Label");
- formsPlot1.Plot.YLabel("Vertical Axis Label");
- formsPlot1.Refresh();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。