IHistogramFunction
Hierarchy Properties

Type Library
TeeChartx

Description
Calculates the number of points of the datasource Series, grouped by intervals defined by the #link THistogramFunction.NumBins#NumBins# property.

Values can be accumulated or not depending on the #link THistogramFunction.Cumulative#Cumulative# property.

With TChart1.Series(0)

.SetFunction tfHistogram

.FunctionType.asHistogram.NumBins = 10

.FunctionType.asHistogram.Cumulative = False

.DataSource = TChart1.Series(1)

.CheckDataSource

End With