I am working on a scientific calculator in C#. I have the parsing engine and such, now I would like to add a graph so the user can plot a line. Is there any kind of control that will let me input a function and it will graph a line in the chart? I'm not talking about plotting individual points by the way.
Take this linear equation in slope-intercept form for instance:
f(x) = 2x + 7
The main goal is to allow the user to write 2x + 7 in a textbox, and then it will graph the line. It would be preferable if custom functions could be used other than just linear functions, such as:
((x - 8) * 4^2)/(7.136 + x)
But it's not a requirement. Is there a third-party control for this? If not could someone give me general help on how I would create such a control?
I have downloaded a program that graphs functions like this:

Can anyone help me on how I can achieve this functionality in my Visual C# 2010 WinForms application?
x(say, by increments of 0.01 for the above) to get they(assume the function is defined asfloat f(float x)and the formula is hard-coded) - then draw a line between the(x, f(x))and(prev_x, f(prev_x)). Of course, it is better just to use an existing graphing control (it doesn't need to be commercial) - in any case, please search [first] for such existing solutions: google and codeplex are two good starting-points. – user166390 Jan 17 at 2:12