Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Displaying graphs from within a C# .NET console app? [duplicate]

Methods of popping up a simple X-Y graph from within a C# .NET console app?

p.s. I don't mind using a 3rd party plugin (such as like IronPython or Matlab) to take advantage of 3rd party graphing libraries.

like image 390
Contango Avatar asked Sep 17 '11 13:09

Contango


1 Answers

Use the following method to start a console app with a windows form and then display/hide the form as necessary. Use the form to display the graph bitmap.

how to run a winform from console application?

like image 137
DoesThatAnswerIt Avatar answered Sep 27 '22 23:09

DoesThatAnswerIt