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

インタラクティブな水平線

インタラクティブな水平線は Y 位置を持ち、X 軸に沿って無限に伸びます。

ScottPlot.Plot myPlot = new();

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

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