ロリポッププロットのクイックスタート
ロリポッププロットは、値のシーケンスから作成できます
ScottPlot.Plot myPlot = new();
double[] values = Generate.Sin(25);
myPlot.Add.Lollipop(values);
myPlot.SavePng("demo.png", 400, 300);
このレシピは、ロリポッププロットカテゴリに含まれる多数のレシピのうちの1つです
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
ロリポッププロットは、値のシーケンスから作成できます
ScottPlot.Plot myPlot = new();
double[] values = Generate.Sin(25);
myPlot.Add.Lollipop(values);
myPlot.SavePng("demo.png", 400, 300);