2

调用 scaleToFitPlots 后,我的 X 轴缩放正确,但我的 Y 轴太高了。附上两张截图,第一张图片:原始,第二张图片:我向下滚动后。

在此处输入图像描述 在此处输入图像描述

我希望图表在绿色框中完全可见(从 Y=0 到 Y=MAX)。在 iPhone、iPad 上,我得到了这个错误的 Y 轴缩放。

出于某种原因,它认为 plotArea 比实际高?

我的图形配置代码片段:

-(void)configureGraph {
    CPTGraph *graph = [[CPTXYGraph alloc] initWithFrame:self.hostView.bounds];
    graph.plotAreaFrame.borderLineStyle = nil;
    self.hostView.hostedGraph = graph;

    //Controls padding between frame & draw
    [graph.plotAreaFrame setPaddingTop:20.0f];
    [graph.plotAreaFrame setPaddingRight:20.0f];
    [graph.plotAreaFrame setPaddingBottom:20.0f];
    [graph.plotAreaFrame setPaddingLeft:30.0f];
    //Controls padding between frame and graph (graph is wrapper)
    graph.paddingLeft = 0.0;
    graph.paddingTop = 0.0;
    graph.paddingRight = 0.0;
    graph.paddingBottom = 0.0;

    // 5 - Enable user interactions for plot space
    CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *) graph.defaultPlotSpace;
    plotSpace.allowsUserInteraction = YES;

}

-(void)scaleToFitPlot
{
    CPTGraph *graph = [self getGraph];
    CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *) graph.defaultPlotSpace;
    [plotSpace scaleToFitPlots:[NSArray arrayWithObjects:self.meterPlot, nil]];
}

-(void)configurePlots {
    // 1 - Get graph and plot space
    CPTGraph *graph = self.hostView.hostedGraph;
    CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *) graph.defaultPlotSpace;

    // 2 - Create the three plots
    meterPlot = [[CPTScatterPlot alloc] init];

    meterPlot.dataSource = self;
    meterPlot.identifier = MYMSymbolHourly;
    // Set plot delegate, to know when symbols have been touched
    // We will display an annotation when a symbol is touched, but this can be another graph!
    meterPlot.delegate                         = self;
    meterPlot.plotSymbolMarginForHitDetection  = 5.0f;

    //CPTColor *meterColor = [CPTColor greenColor];
    CPTColor *meterColor = [self orangeClr];

    [graph addPlot:meterPlot toPlotSpace:plotSpace];
    // 3 - Set up plot space
    printf("\nset initialscale");
    //[plotSpace scaleToFitPlots:[NSArray arrayWithObjects:meterPlot, nil]];
    [self scaleToFitPlot];
    CPTMutablePlotRange *xRange = [plotSpace.xRange mutableCopy];
    //[xRange expandRangeByFactor:CPTDecimalFromCGFloat(1.1f)];
    plotSpace.xRange = xRange;
    CPTMutablePlotRange *yRange = [plotSpace.yRange mutableCopy];
    //[yRange expandRangeByFactor:CPTDecimalFromCGFloat(1.2f)];
    plotSpace.yRange = yRange;
    // 4 - Create styles and symbols
    CPTMutableLineStyle *meterLineStyle = [meterPlot.dataLineStyle mutableCopy];
    meterLineStyle.lineWidth = 2.5;
    meterLineStyle.lineColor = meterColor;
    meterPlot.dataLineStyle = meterLineStyle;
    CPTMutableLineStyle *meterSymbolLineStyle = [CPTMutableLineStyle lineStyle];
    meterSymbolLineStyle.lineColor = meterColor;
    CPTPlotSymbol *meterSymbol = [CPTPlotSymbol ellipsePlotSymbol];
    meterSymbol.fill = [CPTFill fillWithColor:meterColor];
    meterSymbol.lineStyle = meterSymbolLineStyle;
    meterSymbol.size = CGSizeMake(6.0f, 6.0f);
    meterPlot.plotSymbol = meterSymbol;
}

-(void)configureAxes {
    // 1 - Create styles
    CPTMutableTextStyle *axisTitleStyle = [CPTMutableTextStyle textStyle];
    axisTitleStyle.color = [self grey222Clr];
    axisTitleStyle.fontName = @"Helvetica-Bold";
    axisTitleStyle.fontSize = 12.0f;
    CPTMutableLineStyle *axisLineStyle = [CPTMutableLineStyle lineStyle];
    axisLineStyle.lineWidth = 2.0f;
    axisLineStyle.lineColor = [self axisGreyClr];
    CPTMutableTextStyle *xAxisTextStyle = [[CPTMutableTextStyle alloc] init];
    xAxisTextStyle.color = [self grey222Clr]; // This is causing that line bug on y axis
    xAxisTextStyle.fontName = @"Helvetica-Bold";
    xAxisTextStyle.fontSize = 10.0f;


    CPTMutableLineStyle *tickLineStyle = [CPTMutableLineStyle lineStyle];
    tickLineStyle.lineColor = [self axisGreyClr];
    tickLineStyle.lineWidth = 2.0f;
    CPTMutableLineStyle *gridLineStyle = [CPTMutableLineStyle lineStyle];

    gridLineStyle.lineColor = [self axisGreyClr];
    gridLineStyle.lineWidth = 2.0f;

    gridLineStyle.dashPattern = [NSArray arrayWithObjects:[NSNumber numberWithFloat:0.8f], nil];
    gridLineStyle.patternPhase=0.0f;

    // 2 - Get axis set
    CPTXYAxisSet *axisSet = (CPTXYAxisSet *) self.hostView.hostedGraph.axisSet;
    // 3 - Configure x-axis
    CPTAxis *x = axisSet.xAxis;
    x.title = [self getXAxisTitleForChart];
    x.titleTextStyle = axisTitleStyle;
    x.titleOffset = 15.0f;
    x.axisLineStyle = axisLineStyle;
    x.labelingPolicy = CPTAxisLabelingPolicyNone;
    x.labelTextStyle = xAxisTextStyle;
    x.majorTickLineStyle = axisLineStyle;
    x.majorTickLength = 4.0f;
    x.tickDirection = CPTSignNegative;
    x.majorGridLineStyle = gridLineStyle;

    [self setXAxisLabels];

    CPTMutableTextStyle *yAxisTextStyle = [[CPTMutableTextStyle alloc] init];
    yAxisTextStyle.color = [self orangeClr]; 
    yAxisTextStyle.fontName = @"Helvetica-Bold";
    yAxisTextStyle.fontSize = 11.0f;

    // 4 - Configure y-axis
    CPTAxis *y = axisSet.yAxis;
    y.title = @"Usage kWh";
    y.titleTextStyle = axisTitleStyle;
    y.titleOffset = -46.0f;
    y.axisLineStyle = axisLineStyle;
    y.majorGridLineStyle = gridLineStyle;
    y.labelingPolicy = CPTAxisLabelingPolicyNone;
    y.labelTextStyle = yAxisTextStyle;

    y.labelOffset = 30.0f;
    y.majorTickLineStyle = axisLineStyle;
    y.majorTickLength = 4.0f;
    y.minorTickLength = 2.0f;
    y.tickDirection = CPTSignPositive;

    [self setYAxisLabels];
}
4

1 回答 1

3

第一张图片显示了正确的结果-scaleToFitPlots:。它计算的绘图范围恰好包含 x 和 y 的绘图数据。如果您已经知道所需的 y 范围(例如,Y=0 到 Y=MAX),那么直接设置即可。如果您只想缩放 x 轴,请调用-scaleToFitPlots:然后设置yRange

于 2012-12-15T00:20:27.377 回答