-
I'm currently working on an asp app, does anyone know how I would go about creating graphs from a recordset? Basically, I have a table of data which is fine but the users will want to represent this graphically. I haven't had a great deal of joy with it!
Thanks in advance for any help.
-
You could dynamically size images to make simple bar graphs, but I probably wouldn't work well with complicated data. I've done this to represent votes in a survey. I made a small single color image, and then used a Perl script to calculate the vote totals, then generated HTML with the image tags' width based on the percentage on votes each item has received.
Josh