I was able to draw a bar chart using the Core Plot framework in my application, but I need to have some of these bars extend below the X axis. How can I do this in Core Plot?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
First set negative range for x and y axis like this: plotSpace.yRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromFloat(-10.0f) length:CPDecimalFromFloat(20.0f)]; plotSpace.xRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromFloat(-10.0f) length:CPDecimalFromFloat(21.0f)]; Now Set the orthogonal Co-ordinates of x and y axis like this x.orthogonalCoordinateDecimal = CPDecimalFromString(@"0"); Now you can get negative scales. |
|||
|
|