I am trying to create bar chart using asp.net , I am not able to get the appropriate result, I am looking for a help.
I am trying to create bar chart using asp.net , I am not able to get the appropriate result, I am looking for a help.
You can use following code for making bar chart
HTML Code:Bitmap objBitmap; Graphics objGraphics; objBitmap = new Bitmap(400, 440); objGraphics = Graphics.FromImage(objBitmap); objGraphics.Clear(Color.White); Pen p=new Pen(Color.Yellow,0); Rectangle rect=new Rectangle(10,10,280,280);
Bookmarks