0

I have 3 parameters and i want to display them as a graph/chart such that

param 1 is red

param 2 is green

parem 3 is blue

they go in horizontal direction and vary over time something like, THIS GRAPH how do i do it?

Thanks a lot in advance!!!

  • What do you have so far? Have you got a chart to display in your application? What specifically are you having trouble with, in displaying your data? – Matt Ellen Apr 19 '11 at 08:09
  • I know silverlight has a library for charting, not sure if WPF can call that Library to use too. You may want to consider taking a look http://silverlight.codeplex.com/wikipage?title=Silverlight%20Toolkit%20Overview%20Part%202 – C_Rance Apr 19 '11 at 08:14
  • There are charts in the WPF Toolkit. You want the line chart with the color sequence 'red-green-blue'? Also I can create dashed lines, but it requires to change source code of the toolkit, so I would use default solid lines. – vortexwolf Apr 19 '11 at 08:20

2 Answers2

0

I would use the WPF Toolkit for free charts. Otherwise, you could use third party controls.

WPF Toolkit Example

List of chart control options

Community
  • 1
  • 1
Doug
  • 37
  • 4
0

you can use the report control using a bit of Windows form interop.

take a look at Using MS ReportViewer in WPF.

Community
  • 1
  • 1
Steve B
  • 36,818
  • 21
  • 101
  • 174