Skip to main content
A newer version of this page is available.

DXDateTimeRange Class

The date-time axis range.

Declaration

@interface DXDateTimeRange: DXRangeBase

Inheritance

NSObject
DXRangeBase
DXDateTimeRange

Properties

max Property

Gets or sets the end value of a data range that a chart can visualize.

Declaration

@property (readwrite, nullable) NSDate *max

Property Value

Type Description
NSDate *

The NSDate object that is the end value of range.

Note that data that is out of the [min, max] range is never visualized.

min Property

Gets or sets the start value of range.

Declaration

@property (readwrite, nullable) NSDate *min

Property Value

Type Description
NSDate *

The NSDate object that is the start value of range.

Note that data that is out of the [min, max] range is never visualized.

visualMax Property

Gets or sets the end value of a range that is currently displayed on a screen.

Declaration

@property (readwrite, nullable) NSDate *visualMax

Property Value

Type Description
NSDate *

The NSDate object that is the end value of the on-screen range.

Note that this value should be within a [min, max] range.

visualMin Property

Gets or sets the start value of a range that is currently displayed on a screen.

Declaration

@property (readwrite, nullable) NSDate *visualMin

Property Value

Type Description
NSDate *

The NSDate object that is the start value of the on-screen range.

Note that this value should be within a [min, max] range.