Helpful to verify reports of your own downtime, or to double check a downed website you are trying to access.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
If your graphing needs are relatively simple, you could generate a simple HTML table to create your graph, in the form of a horizontal bar chart. This would guarantee client-side compatibility.
i.e. given a recordset rs with two fields, "name" and "value,"
...
<table width=100%>
<%
xlimit = 100
do while not rs.eof
%>
<tr><td align=right><%=rs("name")%
<table width=100% bgcolor=blue><tr><td width=<%=(rs("value")/xlim
</td><td></td></tr>
<%
loop
%>
</table>
...
You could add modifications to cycle the color as well.