reading values from THistogramFunction
Posted: Wed Jun 23, 2010 11:00 am
I can't figure out how to read the calculated values from a histogram. The following would loop through each bin
but how do i now read the function's values using index j? In ChartEditor, the desired column is headed 'Bar' when viewing the series.
Code: Select all
for( int j = 0; j < dynamic_cast< THistogramFunction * >( c -> Series[ 1 ] -> FunctionType ) -> NumBins; j ++ )
?????;