SEO Software
Closed Thread
Results 1 to 2 of 2

Thread: Bar chart using asp.net

  1. #1

    Default Bar chart using asp.net

    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.


  2. #2

    Default

    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); 

Closed Thread

Similar Threads

  1. Pie Chart Usign PHP
    By nikon in forum PHP Help
    Replies: 5
    Last Post: 08-25-2009, 10:22 AM
  2. Peas break chart record in the US
    By decipher in forum Entertainment
    Replies: 0
    Last Post: 08-20-2009, 05:10 AM
  3. Hello from Chart
    By Chart in forum New Member Introductions
    Replies: 7
    Last Post: 03-05-2009, 04:39 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts