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

DXQualitativeStrip Class

The qualitative axis’ strip line.

Declaration

@interface DXQualitativeStrip: DXStripBase

Remarks

The following image demonstrates the strip’s element:

Strip's elements

Inheritance

NSObject
DXChartElement
DXStripBase
DXQualitativeStrip

Properties

maxLimit Property

Gets or sets the strip’s maximum limit.

Declaration

@property (readwrite, copy, nullable) NSString *maxLimit

Property Value

Type Description
NSString *

The string that specifies the strip’s maximum limit.

minLimit Property

Gets or sets the strip’s minimum limit.

Declaration

@property (readwrite, copy, nullable) NSString *minLimit

Property Value

Type Description
NSString *

The string that specifies the strip’s minimum limit.

Instance Methods

initWithMinLimit:maxLimit: Instance Method

Initializes a new strip with the specified maxLimit and minLimit values.

Declaration

- (nullable id)initWithMinLimit:(nullable NSString *)minLimit maxLimit:(nullable NSString *)maxLimit

Parameters

Name Type Description
minLimit NSString *

The strip’s minimum limit.

maxLimit NSString *

The strip’s maximum limit.

Returns

Type Description
id

The new DXQualitativeStrip with specified limits.