Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to use Chartfx in VC++

Status
Not open for further replies.

gensus

Programmer
Joined
May 26, 2003
Messages
1
Location
FR
Hello,
Can anyone expalin me how to use chartfx in VC++:
I put the control on a dialog winndow,I associated a variable to it and I tried without understanding the following code:

int m=n=5;
m_chart.OpenDataEx(1,m,n);
for(i=0;i<m;i++)
{
m_chart.SetThisSerie(i);
for(j=0;j<n;j++)
{
m_chart.SetThisPoint(j);
m_chart.SetValue(j,300);
}
}
m_chart.Refresh();
m_chart.CloseData(1);

Thank You by advance
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top