Enumerates how segments at the boundaries of subdivided series are handled.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration BoundaryIntervalBehavior |
| C# |
|---|
public enum BoundaryIntervalBehavior |
| C++ |
|---|
public enum class BoundaryIntervalBehavior |
Members
| Member | Description |
|---|---|
| Exclude |
The entire interval is excluded.
|
| Include |
The interval is included.
|
| CompleteAndInclude |
The interval is extended to a full larger interval and the extended interval is included.
|
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.