IntAxisValueFormatter.h 332 B

123456789101112131415
  1. //
  2. // IntAxisValueFormatter.h
  3. // ChartsDemo
  4. // Copyright © 2016 dcg. All rights reserved.
  5. //
  6. #import <UIKit/UIKit.h>
  7. #import <Charts/Charts.h>
  8. @interface IntAxisValueFormatter : NSObject <ChartAxisValueFormatter>
  9. @property(nonatomic,strong) NSMutableArray * axisTitleArray;
  10. -(void)setTitle:(NSMutableArray*)titleArray;
  11. @end