// // NetMoneyInflowAxisValueFormatter.m // IBOSS-HJ // // Created by 关宏厚 on 2020/12/9. // Copyright © 2020 elongtian. All rights reserved. #import "NetMoneyInflowAxisValueFormatter.h" @implementation NetMoneyInflowAxisValueFormatter - (NSString *)stringForValue:(double)value axis:(ChartAxisBase *)axis { NSString *xTitle; if(value==0) { xTitle= @"资金流入"; } if(value==1) { xTitle= @"资金流出"; } return xTitle; } @end