コード例 #1
0
ファイル: ScatterList.cs プロジェクト: Jmerk523/ScottPlot
        public void ExecuteRecipe(Plot plt)
        {
            double[] xs = { 1, 2, 3, 4 };
            double[] ys = { 1, 4, 9, 16 };

            var scatterList = plt.AddScatterList();

            scatterList.AddRange(xs, ys);
            scatterList.Add(5, 25);
        }