BoundaryIntervalBehavior Enumeration

Enumerates how segments at the boundaries of subdivided series are handled.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum BoundaryIntervalBehavior

Remarks

The CompleteAndInclude value is used most often with time-related data. For example, if monthly data is requested, but the first interval does not cover an entire month, specifying CompleteAndInclude for the start behavior would indicate the entire first month should be included.

Members

Exclude0 The entire interval is excluded.
Include1 The interval is included.
CompleteAndInclude2 The interval is extended to a full larger interval and the extended interval is included.

See Also