MissingDataOutputCategory Enumeration

Enumeration that determines how null values are processed when retrieving data.

Namespace:  Dundas.BI.Entities.MetricSets
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.2.0.1000)
Syntax
public enum MissingDataOutputCategory
Members
  Member nameValueDescription
None0 The output category is not set, which means that the result does not contain cells for missing data values.
String1 The result contain cells for missing data. These cells have the NullCaption as a formatted value.
Zero2 The missing data is replaced with zero values.
Average3 The missing data is replaced with the average between the previous and the next values, along the specified axis.
AverageNonMissingData4 The missing data is replaced with the average between the previous and the next non empty records, along the specified axis.
RollingAverage5 The missing data is replaced with the rolling average for the previous n record values, along the specified axis.
See Also