DXDateTimeStrip Class
The date-time axis’s strip line.
Declaration
@interface DXDateTimeStrip: DXStripBase
Remarks
The following image demonstrates the strip’s elements:

Inheritance
NSObject
DXChartElement
DXStripBase
DXDateTimeStrip
Properties
maxLimit Property
Gets or sets the strip’s maximum limit.
Declaration
@property (readwrite, nullable) NSDate *maxLimit
Property Value
| Type | Description |
|---|---|
| NSDate * | The NSDate object that specifies the strip’s maximum limit. |
minLimit Property
Gets or sets the strip’s minimum limit.
Declaration
@property (readwrite, nullable) NSDate *minLimit
Property Value
| Type | Description |
|---|---|
| NSDate * | The NSDate object 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 NSDate *)minLimit maxLimit:(nullable NSDate *)maxLimit
Parameters
| Name | Type | Description |
|---|---|---|
| minLimit | NSDate * | The strip’s minimum limit. |
| maxLimit | NSDate * | The strip’s maximum limit. |
Returns
| Type | Description |
|---|---|
| id | The new |