Пример #1
0
        public void Draw(RatingTable input)
        {
            ChartProcessor cpu = new ChartProcessor(input, chart1);

            cpu.AddPoints();
            cpu.SetupAxis();
            cpu.AddLogRegressionLine();

            zedGraphControl1.ZoomOutAll(zedGraphControl1.GraphPane);

            RefreshGraph();
        }
Пример #2
0
 public ChartProcessor(RatingTable rt, ZedGraph.GraphPane chart)
 {
     m_chart = chart;
     m_rt    = rt;
     InitAxis("", "");
 }