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

インタラクティブな垂直線

インタラクティブな垂直線は X 位置を持ち、Y 軸方向に無限に延びます。

ScottPlot.Plot myPlot = new();

for (int i = 0; i < 5; i++)
{
    double x = Generate.RandomNumber();
    myPlot.Add.InteractiveVerticalLine(x);
}

myPlot.SavePng("demo.png", 400, 300);
このレシピは、インタラクティブカテゴリに含まれる多数のレシピの 1 つです