Enum
ThresholdMode

Represents the behavior when determining which data points to get merged.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

cs-api-definition
public enum ThresholdMode

Fields

Count

The threshold value should be an integer number determining how many data points should be presented on their own (without being merged) at most. The data points are first ordered by their value. All data points appearing after the count of points determined by the threshold value get merged. For example, in a set of 10 data points and threshold value of 3, all but the top 3 data points will get merged.

Declaration

cs-api-definition
Count = 0

Field Value

ThresholdMode

PercentageCount

The threshold value should be a decimal or integer number between 0 and 100 and represents a percentage of the count of the data points that should be presented on their own (without being merged). The data points are first ordered by their value. Then the count of the data points that are not merged is calculated as a percentage of all data points count. For example, in a set of 10 data points and threshold value of 40, all but the top 4 data points will get merged.

Declaration

cs-api-definition
PercentageCount = 1

Field Value

ThresholdMode

PercentageValue

The threshold value should be a decimal or integer number between 0 and 100 and represents a percentage of the summary value of all data points. Once the absolute threshold value gets calculated all data points having value less than it get merged. For example, in a set of 10 data points with values from 1 to 10, the summary value is 55. If the threshold value is 10, it means the absolute threshold value is 55 * 10% = 5.5 . This means that all data points with value smaller than 5.5 will get merged.

Declaration

cs-api-definition
PercentageValue = 2

Field Value

ThresholdMode

Value

The threshold value should be a decimal or integer number representing the minimum value that a data point should have in order to get presented on its own (not getting merged). All data points having value less than the threshold value get merged. For example, in a set of 10 data points with values from 1 to 10, if the threshold value is 8.5, all data points having value less than 8.5 will get merged.

Declaration

cs-api-definition
Value = 3

Field Value

ThresholdMode