0

I am new to C# and WPF, this is my first application. I managed to display the content of a csv file in a window and I wish to draw charts of this data (column based on the other ...). My problem is that I can not install the Xceed Wpf Toolkit on my PC (for security reasons). I added the two dlls Xceed.Wpf.DataGrid and Xceed.Wpf.Toolkit as reference in my project and I don't know what to do to draw charts in my WPF application - as I mentioned I'm new to this technology. Do you have please some explanations to guide me!

Manfred Radlwimmer
  • 13,257
  • 13
  • 53
  • 62
d.el
  • 51
  • 10

1 Answers1

0

Use the Windows.Forms chart control. I've found this very straightforward in the past. Take a look at http://www.codeproject.com/Tips/1006180/Using-Microsoft-Chart-in-WPF.

Ian
  • 572
  • 1
  • 4
  • 17
  • thank you for your reply – d.el Jul 22 '16 at 09:15
  • You're welcome. The only problem I recall I had with it (about 2 years ago now) was, if you're an MVVM purest you'll not like the codebehind you end up with. – Ian Jul 22 '16 at 09:26