i need to use the TChartfx component from c++builder for showing a line draw. Does anyone know how to use this component?
i only have a delphi sample code from http://www.doit.com/delphi/undu/dn0831bf.htm
don't forget "CloseData" if u don't write that, it won't work.
i found that in Chart FX 2.0 OCX for Delphi Help.
grEEz RideOn
0
regglerAuthor Commented:
yup cool, that works....
but there's annother problem...i have "fast" refreshing rates (100ms) and now it does flicker...do u know how to prevent that?
Chart1->OpenDataEx(COD_VAL
Chart1->ThisSerie = 0;
Chart1->Value[0] = 30;
Chart1->Value[1] = 20;
Chart1->Value[2] = 40;
Chart1->Value[3] = 60;
Chart1->Value[4] = 50;
Chart1->Value[5] = 15;
Chart1->Value[6] = 24;
Chart1->Value[7] = 35;
Chart1->ThisSerie = 1;
Chart1->Value[0] = 45;
Chart1->Value[1] = 60;
Chart1->Value[2] = 30;
Chart1->Value[3] = 60;
Chart1->Value[4] = 80;
Chart1->Value[5] = 45;
Chart1->Value[6] = 15;
Chart1->Value[7] = 45;
Chart1->CloseData(COD_VALU
don't forget "CloseData" if u don't write that, it won't work.
i found that in Chart FX 2.0 OCX for Delphi Help.
grEEz RideOn