2012-12-14 44 views
2

调用scaleToFitPlots后,我的X轴缩放比例正确,但是我的Y轴太高。附上两张截图,第1张图片:原始图片,第2张图片:我滚动后。Coreplot scaletofitplotissue

enter image description here enter image description here

我希望图形的绿色框内是完全可见(从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]; 
} 
+0

这是不是缩放以适应视图中的所有当前绘图?你想要达到什么样的行为? –

+0

只有一个情节,是的,如果我把自己拖到情节空间,情节就在那里,但我希望那个情节完全被包含在绿框的大小之内。 – Baconbeastnz

+0

这是由yRange引起的问题吗? – iDev

回答

3

第一个图像显示的-scaleToFitPlots:正确的结果。它计算完全包含x和y的绘图数据的绘图范围。如果你已经知道你想要的y范围(例如,Y = 0到Y = MAX),那么直接设置即可。如果您只想缩放x轴,请致电-scaleToFitPlots:,然后再设置yRange

+0

运行scaleToFitPlots后,如何获得plotSpace的新y max/min? – whyoz

+0

Look在'yRange'。绘图范围有属性给你的位置,长度,最小值,最大值和范围的中点。 –