Inherits from NSObject
Declared in TKChartStackInfo.h

Overview

Represents a set of stack properties.

Properties

stackID

The stack info id.

@property (nonatomic, strong) id __nonnull stackID

Declared In

TKChartStackInfo.h

stackMode

The stack info mode.

@property (nonatomic, assign) TKChartStackMode stackMode

Discussion

The stack modes are defined as follows:

typedef enum {
    TKChartStackModeStack,      // Stack series.
    TKChartStackModeStack100    // Stack series up to 100%.
} TKChartStackMode;

Declared In

TKChartStackInfo.h

Instance Methods

initWithID:withStackMode:

Initializes the stack info class.

- (instancetype __nonnull)initWithID:(id __nonnull)aStackID withStackMode:(TKChartStackMode)aStackMode

Parameters

aStackID

The stack id.

aStackMode

The stack mode.

Declared In

TKChartStackInfo.h