I am using bottom left corner instead of top left to draw on iPhone using the following:
CGContextTranslateCTM(context, 0.0, 200.0); CGContextScaleCTM(context, 1.0, -1.0);
While this works fine for changing my origin to draw a chart but labeling appears upside down.
How do use my coordinate system but also get normal straight text to properly label the chart I am drawing ?