核心图:使x轴间距均匀分布

时间:2014-02-24 02:20:34

标签: ios objective-c core-plot

我有一张核心情节图,其中有价格数据。 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]];
    }
}

有没有办法在两者之间动态设置空间,以便最后一个刻度点击到图表的右边?谢谢!

1 个答案:

答案 0 :(得分:2)

spaceBetweenXAxisTicks应该是绘图空间xRange的长度除以刻度线的数量减去一(1)。