Neuerstellung

- Quelle: https://github.com/oxyplot/oxyplot
This commit is contained in:
2023-09-02 09:24:59 +02:00
commit 9520c1fa4a
810 changed files with 117869 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<Query Kind="Program">
<Namespace>OxyPlot</Namespace>
</Query>
void Main()
{
var pm = new PlotModel("Simple Line Plot");
var lineSeries1 = new LineSeries("LineSeries1");
lineSeries1.Points.Add( new DataPoint (1,1));
lineSeries1.Points.Add( new DataPoint (2,2));
lineSeries1.Points.Add( new DataPoint (3,1.5));
pm.Series.Add(lineSeries1);
pm.Show();
}