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

DXNumericStrip Class

The numeric axis’ strip line.

Declaration

@interface DXNumericStrip: DXStripBase

Remarks

The following image demonstrates the strip’s elements.

Strip's elements

Inheritance

NSObject

Properties

maxLimit Property

Gets or sets the strip’s maximum limit.

Declaration

@property (readwrite) double maxLimit

Property Value

Type Description
double

The double value that specifies the strip’s maximum limit.

minLimit Property

Gets or sets the strip’s minimum limit.

Declaration

@property (readwrite) double minLimit

Property Value

Type Description
double

The double value 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

- (id)initWithMinLimit:(double)minLimit maxLimit:(double)maxLimit

Parameters

Name Type Description
minLimit double

The strip’s minimum limit.

maxLimit double

The strip’s maximum limit.

Returns

Type Description
id

The new DXNumericStrip with specified limits.