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

垂直 SignalXY

SignalXY プロットは通常、データを左から右へ表示しますが、このプロットタイプを使用してデータを下から上へ表示することもできます。

ScottPlot.Plot myPlot = new();

double[] xs = Generate.Consecutive(1000);
double[] ys = Generate.RandomWalk(1000);

var sig1 = myPlot.Add.SignalXY(xs, ys);
sig1.Data.Rotated = true;

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