Click here to Skip to main content
15,890,670 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

I am using .net 3.5.
I had allready implimented the bitmap wich look like 1/4 part of piechart but i want to show a single alphabet inside that diagram on specific position.How Can i do this????

Thanks & Regards
Yogesh
Posted

1 solution

Assuming you have the Bitmap Graphics object (which you should, having drawn the pie chart), then use the Graphics.DrawText method[^]
If you don't, you can get it with
using (Graphics g = myBitmap.FromImage())
   {
   ...Draw your text...
   }
 
Share this answer
 
Comments
YOGESH DHAGE 27-Jul-10 2:26am    
Its working Good.Thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900