我有一张核心情节图,其中有价格数据。 x轴表示时间,而y表示价格。我已经确定这个代码专门用于确定刻度线之间的空间:
CGFloat dateCount = [timestamps count];
NSMutableSet *xLabels = [NSMutableSet setWithCapacity:dateCount];
NSMutableSet *xLocations = [NSMutableSet setWithCapacity:dateCount];
float i = 0;
for (NSString *date in timestampStrings) {
CPTAxisLabel *label = [[CPTAxisLabel alloc] initWithText:date textStyle:x.labelTextStyle];
CGFloat location = i+=spaceBetweenXAxisTicks; // Here's where the space between is set
label.tickLocation = CPTDecimalFromCGFloat(location);
label.offset = x.majorTickLength;
if (label) {
[xLabels addObject:label];
[xLocations addObject:[NSNumber numberWithFloat:location]];
}
}
有没有办法在两者之间动态设置空间,以便最后一个刻度点击到图表的右边?谢谢!
答案 0 :(得分:2)
spaceBetweenXAxisTicks
应该是绘图空间xRange
的长度除以刻度线的数量减去一(1)。