我正在使用 Core Plot 条形图 来绘制公司增长率。我想将公司的股票代码作为 x 轴上的 标签,以 为中心,位于它们各自的条形下方。不幸的是,我花了很多时间寻找一种正确居中 x 标签的方法,但使用我的代码没有成功。如何使 x 轴标签正确居中?

我的图表设置如下:

CPTBarPlot *barPlot     = [CPTBarPlot tubularBarPlotWithColor:[CPTColor blueColor] horizontalBars:NO];

barPlot.baseValue       = CPTDecimalFromInt(0);
barPlot.barOffset       = CPTDecimalFromFloat(0.5f);
barPlot.barWidth        = CPTDecimalFromFloat(0.5f);

double xAxisStart = 0;
double xAxisLength = self.companies.count;

double yAxisStart = 0;
double yAxisLength = 0.5;

CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)graph.defaultPlotSpace;
plotSpace.xRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromDouble(xAxisStart) length:CPTDecimalFromDouble(xAxisLength + 1.0)] ;
plotSpace.yRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromDouble(yAxisStart) length:CPTDecimalFromDouble(yAxisLength)] ;

barPlot.plotRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromDouble(+0.0) length:CPTDecimalFromDouble(xAxisLength)] ;

在下面的代码片段中,我尝试使用自定义标签,但没有成功,如下面的示例图表所示。
xAxis.labelingPolicy = CPTAxisLabelingPolicyNone;

NSMutableArray *customLabels = [[NSMutableArray alloc]init];

[self.companies enumerateObjectsUsingBlock:^(IBCompany *company, NSUInteger idx, BOOL *stop) {
    NSString *labelText = company.contrSymbol;
    CPTAxisLabel *label = [[CPTAxisLabel alloc] initWithText:labelText textStyle:xAxis.labelTextStyle];
    label.tickLocation = CPTDecimalFromDouble(idx + 0.5);
    label.offset = xAxis.labelOffset + xAxis.majorTickLength;
    label.rotation    = M_PI * 2;
    [customLabels addObject:label];
    }];
  xAxis.axisLabels = [NSSet setWithArray:customLabels];

请注意,我的条形图索引以 1 开头:
-(NSArray *)numbersForPlot:(CPTPlot *)plot field:(NSUInteger)fieldEnum recordIndexRange:(NSRange)indexRange
    {
    if ( [plot.identifier isEqual:plotIdentifier] ) {;

    if ( fieldEnum == CPTScatterPlotFieldX ) {
        NSMutableArray *indexArray = [[NSMutableArray alloc] init];

        [self.companies enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
            [indexArray addObject:[NSDecimalNumber numberWithInt: idx + 1]];
        }];
        return [indexArray copy];
    }
    else if ( fieldEnum == CPTScatterPlotFieldY ) {
        // ..
    }
}
else return nil; // should be considered as ERROR

}

最佳答案

  • 您应该养成在数据源中为正确的绘图类型使用字段标识符的习惯。对于条形图,您应该使用 CPTBarPlotFieldBarLocationCPTBarPlotFieldBarTip 。在这种情况下没有区别,但对于其他绘图类型并不总是如此。例如,水平条形图的 x 和 y 坐标是相反的。
  • 数据源始终返回相同的数据集。您需要检查 indexRange 参数并仅返回请求的范围。
  • x 轴的绘图范围在 0 到 4 之间。标签位于 0.5、1.5 和 2.5。 plotRange 弄乱了条形间距。将其设置为 nil 的默认值,您应该会获得所需的外观。来自 plotRange docs :

  • 关于objective-c - 核心情节 : Custom labels on the x-axis for bar charts,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12770403/

    10-14 20:43