Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my scatter plot, I use Core-Plot's autoscale feature, which seems to work fine, according to my test plots (see below):

CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)graph.defaultPlotSpace;
[plotSpace scaleToFitPlots:[NSArray arrayWithObject:sharePricePlot]];
[valuationPlotSpace scaleToFitPlots:[NSArray arrayWithObject:valuationPlot]];

CPTMutablePlotRange *xRange = [plotSpace.xRange mutableCopy];
CPTMutablePlotRange *yRange = [plotSpace.yRange mutableCopy];

[xRange expandRangeByFactor:CPTDecimalFromDouble(1.0)];
[yRange expandRangeByFactor:CPTDecimalFromDouble(1.0)];
plotSpace.xRange = xRange;
plotSpace.yRange = yRange;

I use custom labels for my x-axis which I set in an standard enumeration. In this enumeration, I set each axis label based on the demo app as follows:

CPTAxisLabel *newLabel = [[CPTAxisLabel alloc] initWithText:[NSString stringWithFormat:@"%u", year]
textStyle:xAxis.labelTextStyle];
newLabel.tickLocation = CPTDecimalFromUnsignedInteger(idx);
newLabel.offset = 0;
[xAxisLabels addObject:newLabel];

However, even though I set the offset to 0, which should position the labels very close to the x-axis (in my view), the offset between the axis and the labels is different depending on the range of y-values (please refer to the charts for Amazon and Priceline below).

How can I set the distance between the x-axis and the labels independent of the (auto-scaled) y-values?

Chart 1: Amazon Amazon

Chart 2: Priceline Priceline

THANK YOU!

share|improve this question

1 Answer

up vote 3 down vote accepted

It looks the whole x-axis is moving. You can fix it in place using constraints.

x.axisConstraints = [CPTConstraints constraintWithLowerOffset:0.0];
share|improve this answer
Thank you, Eric! This has fixed my problem. Is there any good description of the constraints in Core Plot available? I found it hard to understand how they work. – AlexR Aug 9 '12 at 16:08
The most detailed explanation is probably this post that I wrote when I added them. – Eric Skroch Aug 10 '12 at 23:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.