Keyboard shortcuts

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

レーダープロットのクイックスタート

レーダーチャートは、値の単一の配列から作成できます。

Radar.cs
ScottPlot.Plot myPlot = new();

double[] values = { 78, 83, 84, 76, 43 };
myPlot.Add.Radar(values);

myPlot.SavePng("demo.png", 400, 300);
このレシピは、レーダープロットカテゴリにある多数のレシピの 1 つです