how to create line graph in vc++?
-
hi, I don't know Graphics in vc++? i want how to develop line graph in vc++? Win32 GUI use line graph is possible? any sample code or url please give me Regards, M.Mathivanan
-
hi, I don't know Graphics in vc++? i want how to develop line graph in vc++? Win32 GUI use line graph is possible? any sample code or url please give me Regards, M.Mathivanan
I don't understand from your query on which base do you want to draw the line on. If it's a Win32 SDI application, you can get the device context and then draw the lines on the graph using the MoveTo and LineTo API's.
I am a HUMAN. I have that keyword (??? too much) in my name........ ;-)_AnsHUMAN_b>
-
hi, I don't know Graphics in vc++? i want how to develop line graph in vc++? Win32 GUI use line graph is possible? any sample code or url please give me Regards, M.Mathivanan
Navigate the Given link how to draw line graph in VC++[^] Hope it will work for you. :)
-
hi, I don't know Graphics in vc++? i want how to develop line graph in vc++? Win32 GUI use line graph is possible? any sample code or url please give me Regards, M.Mathivanan
Are you using MFC or pure win32 API ? If you are using MFC, take a look at my sig for a charting control I wrote for codeproject.
Cédric Moonen Software developer
Charting control [v3.0] OpenGL game tutorial in C++ -
Are you using MFC or pure win32 API ? If you are using MFC, take a look at my sig for a charting control I wrote for codeproject.
Cédric Moonen Software developer
Charting control [v3.0] OpenGL game tutorial in C++i try to win32 GUI
-
hi, I don't know Graphics in vc++? i want how to develop line graph in vc++? Win32 GUI use line graph is possible? any sample code or url please give me Regards, M.Mathivanan
pDC->MoveTo(x,y);
while(oPoint in points collection)
{
pDC->LineTo(oPoint.x,oPoint.y);
}onwards and upwards...
-
hi, I don't know Graphics in vc++? i want how to develop line graph in vc++? Win32 GUI use line graph is possible? any sample code or url please give me Regards, M.Mathivanan
ms chart active x control can be alternative
My Company