I'm trying to make a simple app where a chart is drawn with a line and X axis. I want to fill parts of the view enclosed by chart and X axis with gradient. To fill them I use the following code

        CGContextSaveGState(c);
        CGContextAddPath(c, CGContextCopyPath(c));
        CGContextClip(c);
        CGContextDrawLinearGradient(c, g, previousPointOfIntersection, intersectionPoint, 0);
        CGContextRestoreGState(c);

every time the line crosses the X axis. However, the problem is that the gradient fills the whole view between previous point of intersection and current one.

Is this a right way to draw a gradient for a part of view enclosed by lines?

I'd be very happy to hear any suggestions regarding my problem :)

P.S. here's the code of my class http://pastebin.com/wYiHkuVi

link|improve this question

75% accept rate
feedback

1 Answer

I'd say you don't have the path in the context that you think you do. If you've "stroked" the path for your graph it's been used up.

Replace your Add Path with:

  CGContextAddEllipseInRect(c, self.bounds);

to see if you get some clipping occurring.

If so, then you need to rebuild your path here instead of the AddPath/Ellipse code.

link|improve this answer
oh thanks for the clue :3 my problem was in CGContextStrokePath(c) method which was deleting the current path after stroking – Chris Jul 22 '11 at 4:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.