Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Graphs in ASP

Status
Not open for further replies.

House

Programmer
Joined
Sep 25, 2000
Messages
1
Location
US
Does anyone know an easy way to build and display graphs in ASP? We just want to display percentages in either a bar graph or possibly a circle graph. [sig][/sig]
 
Go to Don't bother using MSChart as it just doesn't work unless the client machine has Visual InterDev/Basic installed. It will do a lot more than you are asking for but it works *extremely* well and can display a myriad of chart types.

Later, [sig]<p>Rob<br><a href=mailto:robschultz@yahoo.com>robschultz@yahoo.com</a><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
"Focus on the solution to the problem,<br>
not the obstacles in the way."<br>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[/sig]
 
Hi, house,

This is how i do it, hope it can help you.
First create a 1x1 pixel images with black color (example),
then in your html or asp page.. call the image and define the width/length of the bar

<Img src=&quot;black.gif&quot; width=100 height=2>

Using ASP you can also make this lenght dynamic.
<img src=&quot;black.gif&quot;
width=<%=barlength%>
height=<%=barheight%>
>

Pepper
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top