Firoso
Firoso

Reputation: 6685

Custom WPF control for showing a Graph and highlighting Points of Interest

Question for you all, I've been charged with developing an application to view data about a testing cycle we do for environmental screening, products are placed in an environmental control, freezing and heating the product while a variety of self-tests are run. My manager would like to see a graph of temperature over time as an x/y graph, but he'd also like to have an indicator for where the test is currently at that has a small box, giving additional info, (test status, current test, running time etc.)

So what I'm thinking is I need to make a custom control that is capable of displaying this scatter graph and can also contain another content control for my additional info box, what base control should I use as a foundation, what should I look at for drawing my graph, and how can I do my layout for this? I'm assuming the use of a canvas control is my best bet for layout, and DrawingGroups with PathFigures for the graph... anyone capable of giving me more guidance?

Upvotes: 0

Views: 1847

Answers (2)

Palesz
Palesz

Reputation: 2112

VisiFire maybe it's your choice.

Upvotes: 2

Joachim Kerschbaumer
Joachim Kerschbaumer

Reputation: 9891

maybe you should check out Sacha Barber's WPF Graph Control. This may be a good starting point

Upvotes: 1

Related Questions