I made this cool pie chart and now I'd like to drop a shadow under it. Is there anyway I can do it with DrawRect ?

enter image description here

I'd like to do it right under the pie chart (drawn using DrawRect). Suggestions are welcome

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Have a look at BNPiechart here - http://bynomial.com/blog/?p=104 . The code is open source.You can use it directly.If you do not want to use the library, you can refer the code for creating the shadow.

link|improve this answer
that's just perfect. There's a simple line for this but after reading the whole material it made me open my eyes for so much drawRect can do... Here's what I was looking for exactly (but you should check the entire material this guy posted. Thanks man! – Farini Feb 22 at 9:19
CGContextSetShadowWithColor(context, shadowOffset, shadowBlurRadius, shadowColor.CGColor); – Farini Feb 22 at 9:19
feedback

Your Answer

 
or
required, but never shown

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