Click here to Skip to main content
15,893,644 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

I am using Visual C++ 2008 Express Edition. I want to plot a simple X-Y graph in my form (or another form is also OK). I tried serval library/control which searched here, such as High-speed Charting Control, Plot Graphic Library, plplot and some other tools. But most of them is not work for my VS (or maybe due to I am stupid..). Any friends can suggest some method for me? Actually one tool is enough for me.

Looking forward for any help.Thanks so much..
Posted

Check this article :

Using the MS Chart control in VC++[^]
 
Share this answer
 
Thanks Mehdi, but..how come I can't find Microsoft Chart Control when I add New Reference...is it the problem of by VS version again...?
 
Share this answer
 
C#
int i, j, x, y;
        char plot[21][75] = {'.'};
        plot[x][y]='+';
        for(i=20; i>-1; i--)
       {
              for(j=0; j<75; j++)
             {
      plot[i][j]='.';
                  plot[x][y]='+';
      cout<<plot[i][j];                         }
      cout<<"\n";
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900