Oct 10, 2002 #1 Vadim Programmer Feb 5, 2002 75 US How to make some numeric data presented as rectangular graphs on HTML?
Oct 11, 2002 #2 RussellGrice Programmer Jun 12, 2002 6 GB I would do it by creating a table then give each reoccurance of the item 2% or 3% space across the page so If your results were like this: Results: First Item - 35 Second Item - 20 Third Item - 30 You may have something like.. <table width='100%'> <tr><td width="15%">First Item</td><td width="70%" bgcolor='red'> </td><td>< </td></tr> <tr><td width="15%">Second Item</td><td width="40%" bgcolor='blue'> </td><td>< </td></tr> <tr><td width="15%">Third Item</td><td width="60%" bgcolor='yellow'> </td><td>< </td></tr> </table> If your largest items reoccurance is over 100 then you'll have to say maybe 2 reoccurances to 1% Does that make any sense ? Russell Upvote 0 Downvote
I would do it by creating a table then give each reoccurance of the item 2% or 3% space across the page so If your results were like this: Results: First Item - 35 Second Item - 20 Third Item - 30 You may have something like.. <table width='100%'> <tr><td width="15%">First Item</td><td width="70%" bgcolor='red'> </td><td>< </td></tr> <tr><td width="15%">Second Item</td><td width="40%" bgcolor='blue'> </td><td>< </td></tr> <tr><td width="15%">Third Item</td><td width="60%" bgcolor='yellow'> </td><td>< </td></tr> </table> If your largest items reoccurance is over 100 then you'll have to say maybe 2 reoccurances to 1% Does that make any sense ? Russell