DXNumericAxisLabelTextFormatter Protocol
The protocol which a class that provides numeric X-axis‘s or numeric Y-axis‘s label text should implement.
Declaration
@protocol DXNumericAxisLabelTextFormatter <NSObject>
Implements
DXCharts.NSObject
Instance Methods
format: Instance Method
Formats the specified axis value.
Declaration
- (NSString *)format:(double)value
Parameters
Name | Type | Description |
---|---|---|
value | double | The axis value for which the method generates the string representation. |
Returns
Type | Description |
---|---|
NSString * | The formatted axis value. |