Algorithmix.Graph.Graph C# (CSharp) Method

Graph() public method

public Graph ( double xx, double yy, string title ) : System
xx double
yy double
title string
return System
        public Graph(double[] xx, double[] yy, string title)
        {
            InitializeComponent();
            var pane = ZGraph.GraphPane;
            pane.Title.Text = title;
            var data = new PointPairList(xx, yy);
            pane.AddStick("Data", data, Color.Red);
            ZGraph.AxisChange();
        }