| 12345678910111213141516171819202122232425262728293031 |
- //
- // IntAxisValueFormatter.m
- // ChartsDemo
- // Copyright © 2016 dcg. All rights reserved.
- //
- #import "IntAxisValueFormatter.h"
- @implementation IntAxisValueFormatter
- {
- }
- -(void)setTitle:(NSMutableArray*)titleArray
- {
- _axisTitleArray=titleArray;
- }
- - (NSString *)stringForValue:(double)value
- axis:(ChartAxisBase *)axis
- {
-
- if(value>-1&&value<_axisTitleArray.count)
- {
- return [_axisTitleArray objectAtIndex:value];
- }
- else{
- return @"";
- }
- }
- @end
|