The Core Plot host view is a subclass UIView. The default should be clear backgroundColor. See UIView Docs .
You can also set the fill on the chart using your image, instead of placing it in the background.
graph.fill = [CPTFill fillWithImage:[CPTImage imageWithCGImage:myCGImage]];
This is just one example. CPTImagealso has several other initialization methods.
source
share