Example #1
0
 public void ShowGraph(string title = "")
 {
     var chart = new Chart();
     chart.AddSeries(this.PlotModel());
     chart.ShowUserControl();
 }
Example #2
0
 public void ShowLineGraph(string title = "")
 {
     var chart = new Chart();
     chart.AddSeries(this.GetLineSeries());
     chart.ShowUserControl();
 }