NetMoneyInflowAxisValueFormatter.m 531 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // NetMoneyInflowAxisValueFormatter.m
  3. // IBOSS-HJ
  4. //
  5. // Created by 关宏厚 on 2020/12/9.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. #import "NetMoneyInflowAxisValueFormatter.h"
  8. @implementation NetMoneyInflowAxisValueFormatter
  9. - (NSString *)stringForValue:(double)value
  10. axis:(ChartAxisBase *)axis
  11. {
  12. NSString *xTitle;
  13. if(value==0)
  14. {
  15. xTitle= @"资金流入";
  16. }
  17. if(value==1)
  18. {
  19. xTitle= @"资金流出";
  20. }
  21. return xTitle;
  22. }
  23. @end