gpt4 book ai didi

objective-c - 核心情节规模以适应情节问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:12:36 24 4
gpt4 key购买 nike

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

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];
}

最佳答案

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

关于objective-c - 核心情节规模以适应情节问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13871120/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com