Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

HI how i can access property xScaleType of CPTXYGraph in core plot for iPhone application.

i m accessing something like this but unable to get

CPTScaleType* obj = graph.xScaleType
share|improve this question
Improve your accept rate to attract attention for your questions. – beryllium Nov 14 '11 at 10:24

1 Answer

The scale type is a property of the plot space.

CPTXYPlotSpace *plotSpace = graph.defaultPlotSpace;
plotSpace.xScaleType = CPTScaleTypeLog; // default is CPTScaleTypeLinear
share|improve this answer

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.