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

DXQualitativeRange Class

The qualitative axis range.

Declaration

@interface DXQualitativeRange: DXRangeBase

Inheritance

NSObject
DXRangeBase
DXQualitativeRange

Properties

max Property

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

Declaration

@property (readwrite, nullable) NSString *max

Property Value

Type Description
NSString *

The NSString 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, nullable) NSString *min

Property Value

Type Description
NSString *

The NSString 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) NSString *visualMax

Property Value

Type Description
NSString *

The NSString 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) NSString *visualMin

Property Value

Type Description
NSString *

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

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