| 12345678910111213141516171819 |
- //
- // yAxisValueFormatter.m
- // IBOSS-HJ
- //
- // Created by 关宏厚 on 2020/12/8.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "YAxisValueFormatter.h"
- @implementation YAxisValueFormatter
-
- - (NSString *)stringForValue:(double)value
- axis:(ChartAxisBase *)axis
- {
- return [@((NSInteger)value) stringValue];
- }
- @end
|