| 123456789101112131415 |
- //
- // IntAxisValueFormatter.h
- // ChartsDemo
- // Copyright © 2016 dcg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <Charts/Charts.h>
- @interface IntAxisValueFormatter : NSObject <ChartAxisValueFormatter>
- @property(nonatomic,strong) NSMutableArray * axisTitleArray;
- -(void)setTitle:(NSMutableArray*)titleArray;
- @end
|