Enumerates how segments at the boundaries of subdivided series are handled.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum BoundaryIntervalBehavior
Public Enumeration BoundaryIntervalBehavior
public enum class BoundaryIntervalBehavior
type BoundaryIntervalBehavior
| Member name | Value | Description |
---|
| Exclude | 0 |
The entire interval is excluded.
|
| Include | 1 |
The interval is included.
|
| CompleteAndInclude | 2 |
The interval is extended to a full larger interval and the extended interval is included.
|
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.
Reference