PRoblems Running Core Plot Tuorial
Posted
by Nick LaMarca
on Stack Overflow
See other posts from Stack Overflow
or by Nick LaMarca
Published on 2010-06-10T19:48:19Z
Indexed on
2010/06/10
20:02 UTC
Read the original article
Hit count: 188
iphone-sdk
|core-plot
I am following the tutorial here about core plot here.... http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application
I am getting errors with the following lines of code
//SAYING INCOMPATIBLE TYPE FOR AURGUMENT 1 'setMajorIntervalLength'
axisSet.xAxis.majorIntervalLength = [NSDecimalNumber decimalNumberWithString:@"5"];
// request for member 'axisLabelOffset' in something not a structure or union
axisSet.xAxis.axisLabelOffset = 3.0f;
//request for member 'bounds' in something not a structure or union
CPScatterPlot *xSquaredPlot = [[[CPScatterPlot alloc] initWithFrame:graph.defaultPlotSpace.bounds] autorelease];
© Stack Overflow or respective owner