YAxisValueFormatter.m 341 B

12345678910111213141516171819
  1. //
  2. // yAxisValueFormatter.m
  3. // IBOSS-HJ
  4. //
  5. // Created by 关宏厚 on 2020/12/8.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import "YAxisValueFormatter.h"
  9. @implementation YAxisValueFormatter
  10. - (NSString *)stringForValue:(double)value
  11. axis:(ChartAxisBase *)axis
  12. {
  13. return [@((NSInteger)value) stringValue];
  14. }
  15. @end