draw a graph using the console

suedasszyy

New member
Joined
Oct 25, 2006
Messages
4
Programming Experience
Beginner
hai...
i'm a new user for VB.net.

is it possible to draw a graph using console application?

how can i draw for example sin graph using console application with a specific x-axes range and y -axes range?

i already done it using window form.
or should i just make connection between window form and console application?

i really appreciate your help

thank you so much
 
You can draw to an image with a console application, but you can't draw to the console window or view the image inside the console window.
 
so do you mean that i can write my programm in console application but have to view the graph through window form?

im using VB express 2005.I would like to create a universall plot programm(in console),so that i can plot any function and will be able to see it in window form.First the user have to give in the value for x and y scale.Next the user may have to enter set of data that they want to be plot in the graph.For example for x from 1 to 15 plot the given data. (x,y)= (0,5) (3,10) (6,15)(9,20)(12,14)(15,6).
 
Back
Top