TiPlotChannelCustom.RunningYMean
TiPlotChannelCustom
Gets the current mean (average) value of all Y data points in a channel.
property RunningYMean : Double;
Description
Use RunningYMean to get the current mean (average) value of all Y data points
in a channel.
Important Note: this property will not be updated if you manually modify previous data
points. If you modify previous data points and want to reset this RunningYMean
value to reflect the changes, call GetYMean to update.
Note: this property does not take into consideration empty or null data points in
its calculations.
Example
Delphi
Value := iComponent.Channel[0].RunningYMean;
C++ Builder
Value = iComponent->Channel[0]->RunningYMean;
Contents | Index | Previous | Next