SingleRecordRepresentationType Enumeration |
Enumeration that contains the supported rules for single record representation.
Namespace:
Dundas.BI.Data
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic enum SingleRecordRepresentationType
Public Enumeration SingleRecordRepresentationType
public enum class SingleRecordRepresentationType
type SingleRecordRepresentationType
Members|
| Member name | Value | Description |
|---|
| NotSet | 0 |
The single record representation rule has not been set up.
|
| Custom | 1 |
Indicates a custom single record representation rule.
|
| First | 2 |
Indicates the first record in the result is used for single record representation.
|
| Last | 3 |
Indicates the last record in the result is used for single record representation.
|
| IndexOf | 4 |
Indicates the record with the specified index in the result is used for single record representation.
|
| LastIndexOf | 5 |
Indicates the record with the specified index from the end of the result is used for single record representation.
|
| Average | 6 |
Indicates a non dimensional record used for single record representation, where the measures are calculated using the average of the corresponding descriptor values.
|
| AverageOfFirst | 7 |
Indicates a non dimensional record used for single record representation.
The measures are calculated using the average of the specified values from the top of the result for the corresponding descriptor.
|
| AverageOfLast | 8 |
Indicates a non dimensional record used for single record representation.
The measures are calculated using the average of the specified values from the bottom of the result for the corresponding descriptor.
|
| Sum | 9 |
Indicates a non dimensional record used for single record representation, where the measures are calculated using the sum of the corresponding descriptor values.
|
| SumOfFirst | 10 |
Indicates a non dimensional record used for single record representation.
The measures are calculated using the sum of the specified values from the top of the result for the corresponding descriptor.
|
| SumOfLast | 11 |
Indicates a non dimensional record used for single record representation.
The measures are calculated using the sum of the specified values from the bottom of the result for the corresponding descriptor.
|
See Also