I need to clear the current line graph and replace it with a new line graph, as and when I change the month (The createLineGraph method is called each time I change the month). What happens is that, part (just part) of the previous month's graph coincides with the new line graph. I'm using CoreGraphics + Quartz2D to create the lines. Anyone know a solution to this grating issue?

link|improve this question
feedback

1 Answer

I would suggest drawing your lines on separate CALayers, that way you can just hide/remove the CALayers.

link|improve this answer
Ahh.. That sounds like..work! :| Is there any other way around this? Like a magic spell? :P Thanks for the help anyways. :) Will try it if I don't find any other solution. – Joel Joseph Sep 6 '11 at 9:49
1  
Try drawing the line again after setting the blend mode to kCGBlendModeClear. This will obliterate anything the line touches on the same context, however. – Alastair Stuart Sep 7 '11 at 11:03
The problem has been fixed. It was just a minuscule error. I feel sane again. Thanks anyways Alastair! :D – Joel Joseph Sep 8 '11 at 9:33
Alastair Stuart's method helped me out! – James Hall Oct 12 '11 at 20:49
feedback

Your Answer

 
or
required, but never shown

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