ChartsDemo-iOS/Objective-C/Formatters/IntAxisValueFormatter.m (10 lines of code) (raw):

// // IntAxisValueFormatter.m // ChartsDemo // Copyright © 2016 dcg. All rights reserved. // #import "IntAxisValueFormatter.h" @implementation IntAxisValueFormatter { } - (NSString *)stringForValue:(double)value axis:(ChartAxisBase *)axis { return [@((NSInteger)value) stringValue]; } @end