gpt4 book ai didi

ios - 放大核心图时如何保持轴?

转载 作者:行者123 更新时间:2023-11-28 21:51:07 26 4
gpt4 key购买 nike

我使用 Xcode 为 iOS8 开发应用程序。我使用 Core-Plot 选项

plotSpace.allowsUserInteraction = YES;

我在图表中添加了值,它显示了图表,但是当我放大 x-title 时,y-title 被隐藏了。

我该如何解决这个问题?我希望在放大/缩小后不隐藏标题谢谢这是我的功能:

#import "CorePlot-CocoaTouch.h"
@property CPTScatterPlot *linePlot;
@property (nonatomic, strong) CPTGraphHostingView *hostView;
@property (nonatomic, strong) CPTGraph *graph;

初始化

-(void)initLinePlotTmp
{
//Initialize and display Graph (x and y axis lines)
self.graph = [[CPTXYGraph alloc] initWithFrame:self.graphView.bounds];
self.hostView = [[CPTGraphHostingView alloc] initWithFrame:self.graphView.bounds];
self.hostView.hostedGraph = self.graph;
[self.graphView addSubview:hostView];

//apply styling to Graph
[self.graph applyTheme:[CPTTheme themeNamed:kCPTPlainWhiteTheme]];

//set graph backgound area transparent
self.graph.backgroundColor = nil;
self.graph.fill = nil;
self.graph.plotAreaFrame.fill = nil;
self.graph.plotAreaFrame.plotArea.fill = nil;

//This removes top and right lines of graph
self.graph.plotAreaFrame.borderLineStyle = nil;
//This shows x and y axis labels from 0 to 1
self.graph.plotAreaFrame.masksToBorder = NO;

// set padding for graph from Left and Bottom
self.graph.paddingBottom = 10;
self.graph.paddingLeft = 50;
self.graph.paddingRight = 0;
self.graph.paddingTop = 10;

//Define x and y axis range
// x-axis from 0 to 100
// y-axis from 0 to 300
CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)self.graph.defaultPlotSpace;
plotSpace.allowsUserInteraction = YES;
plotSpace.xRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromInt(plotXMinRange)
length:CPTDecimalFromInt(plotXMaxRange)];
plotSpace.yRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromInt(plotYMinRange)
length:CPTDecimalFromInt(plotYMaxRange)];

CPTXYAxisSet *axisSet = (CPTXYAxisSet *)self.graph.axisSet;

NSNumberFormatter *axisLabelFormatter = [[NSNumberFormatter alloc]init];
[axisLabelFormatter setGeneratesDecimalNumbers:NO];
[axisLabelFormatter setNumberStyle:NSNumberFormatterDecimalStyle];


//Define x-axis properties
//x-axis intermediate interval 2
axisSet.xAxis.majorIntervalLength = CPTDecimalFromInt(plotXInterval);
axisSet.xAxis.minorTicksPerInterval = 1;
axisSet.xAxis.minorTickLength = 5;
axisSet.xAxis.majorTickLength = 7;
axisSet.xAxis.title = @"Time(Hours)";
axisSet.xAxis.titleOffset = 25;
axisSet.xAxis.labelFormatter = axisLabelFormatter;

//Define y-axis properties
//y-axis intermediate interval = 50;
axisSet.yAxis.majorIntervalLength = CPTDecimalFromInt(plotYInterval);
axisSet.yAxis.minorTicksPerInterval = 4;
axisSet.yAxis.minorTickLength = 5;
axisSet.yAxis.majorTickLength = 7;
axisSet.yAxis.title = @"Temperature";
axisSet.yAxis.titleOffset = 30;
axisSet.yAxis.labelFormatter = axisLabelFormatter;


//Define line plot and set line properties
self.linePlot = [[CPTScatterPlot alloc] init];
self.linePlot.dataSource = self;
[self.graph addPlot:self.linePlot toPlotSpace:plotSpace];

//set line plot style
CPTMutableLineStyle *lineStyle = [self.linePlot.dataLineStyle mutableCopy];
lineStyle.lineWidth = 2;
lineStyle.lineColor = [CPTColor blackColor];
self.linePlot.dataLineStyle = lineStyle;

CPTMutableLineStyle *symbolineStyle = [CPTMutableLineStyle lineStyle];
symbolineStyle.lineColor = [CPTColor blackColor];
CPTPlotSymbol *symbol = [CPTPlotSymbol ellipsePlotSymbol];
symbol.fill = [CPTFill fillWithColor:[CPTColor blackColor]];
symbol.lineStyle = symbolineStyle;
symbol.size = CGSizeMake(3.0f, 3.0f);
self.linePlot.plotSymbol = symbol;

//set graph grid lines
CPTMutableLineStyle *gridLineStyle = [[CPTMutableLineStyle alloc] init];
gridLineStyle.lineColor = [CPTColor grayColor];
gridLineStyle.lineWidth = 0.5;
axisSet.xAxis.majorGridLineStyle = gridLineStyle;
axisSet.yAxis.majorGridLineStyle = gridLineStyle;


}

添加值

-(void)addHRValueToGraph:(int)data
{
[tmpValues addObject:[NSDecimalNumber numberWithInt:data]];
if ([tmpValues count] > plotXMaxRange) {
plotXMaxRange = plotXMaxRange + plotXMaxRange;
plotXInterval = plotXInterval + plotXInterval;
[self updatePlotSpace];
}
[self.graph reloadData];
}

查看负载

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.

LogDebug(@"viewDidLoad");

tmpValues = [[NSMutableArray alloc]init];
tmpDBvalues= [[NSMutableArray alloc]init];

plotXMaxRange = 24;
plotXMinRange = 1;

plotYMaxRange = 5;
plotYMinRange = 35

plotYInterval = 1;
plotXInterval = 2;

}

A graph

最佳答案

使用绘图空间委托(delegate)来限制绘图范围。实现 -plotSpace:willChangePlotRangeTo:forCoordinate: 方法。检查传递的范围并确保它落在所需的范围内。如果没有,制作一个可变副本并修改它以适应。根据需要返回原始或修改后的范围。

关于ios - 放大核心图时如何保持轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28297339/

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