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

DXNumericRange Class

The numeric axis range.

Declaration

@interface DXNumericRange: DXRangeBase

Inheritance

NSObject
DXRangeBase
DXNumericRange

Properties

max Property

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

Declaration

@property (readwrite) CGFloat max

Property Value

Type Description
CGFloat

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 a data range that a chart can visualize.

Declaration

@property (readwrite) CGFloat min

Property Value

Type Description
CGFloat

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) CGFloat visualMax

Property Value

Type Description
CGFloat

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) CGFloat visualMin

Property Value

Type Description
CGFloat

The start value of the on-screen range.

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