Code: Select all
for( int j = 0; j < dynamic_cast< THistogramFunction * >( c -> Series[ 1 ] -> FunctionType ) -> NumBins; j ++ )
?????;
Code: Select all
for( int j = 0; j < dynamic_cast< THistogramFunction * >( c -> Series[ 1 ] -> FunctionType ) -> NumBins; j ++ )
?????;
Code: Select all
for i:=0 to (Chart1[1].FunctionType as THistogramFunction).NumBins -1 do
begin
BinVal:=Chart1[1].YValue[i];
end;
Code: Select all
for i:=0 to Chart1[1].Count -1 do
begin
BinVal:=Chart1[1].YValue[i];
end;
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |