Home > Mobile >  How to add visual displays (graphs, screens, diagrams) to Visual studio C#
How to add visual displays (graphs, screens, diagrams) to Visual studio C#

Time:11-24

I'm having a lot of fun with C#, recently I created a simple "statistics calculator". It takes in data and calculates the mean, standard deviation etc.

However, I want to add something visual to my console apps. For example a diagram showing the data, or a graph (I also want to try coding something with function graphing).

How can I do that?

CodePudding user response:

It depends on what visual technology you use – WinForms, WPF, MAUI, etc. WinForms has the built-in Chart class. But I think you will eventually want to explore other, 3rd party solutions. I used the LiveCharts with WPF. It is not that hard to prepare data and the graphs look nice.

CodePudding user response:

For GUI with .Net there are many options including:

  • Related