Accord.Controls.DataSeriesBox.Show C# (CSharp) Метод

Show() публичный статический Метод

Displays a scatter plot with the specified data.
public static Show ( IEnumerable values ) : DataSeriesBox
values IEnumerable The x-values for the data series.
Результат DataSeriesBox
        public static DataSeriesBox Show(IEnumerable<DateTime> values, params IEnumerable<double>[] series)
        {
            double[] xx = values.ToArray().Convert(a => (double)(new XDate(a)));
            return show(null, xx, series, true);
        }

Same methods

DataSeriesBox::Show ( IEnumerable values ) : DataSeriesBox
DataSeriesBox::Show ( String title, double>.Func function ) : DataSeriesBox
DataSeriesBox::Show ( String title, double>.Func function, DoubleRange range ) : DataSeriesBox
DataSeriesBox::Show ( String title, double>.Func function, double step ) : DataSeriesBox
DataSeriesBox::Show ( String title, double>.Func function, double min, double max, double step ) : DataSeriesBox
DataSeriesBox::Show ( String title, double>.Func function, int npoints ) : DataSeriesBox
DataSeriesBox::Show ( string title = "Time series" ) : DataSeriesBox