レーダープロットのクイックスタート
レーダーチャートは、値の単一の配列から作成できます。
ScottPlot.Plot myPlot = new();
double[] values = { 78, 83, 84, 76, 43 };
myPlot.Add.Radar(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 = { 78, 83, 84, 76, 43 };
myPlot.Add.Radar(values);
myPlot.SavePng("demo.png", 400, 300);