php-general | 2001062
Date: 06/19/01
- Next message: Andrew Halliday: "Re: [PHP] upload on Win9x"
- Previous message: Ray Hilton: "RE: [PHP] Multipe Tables, Single Query Problem"
- In reply to: Karl J. Stubsjoen: "[PHP] Pie Charts & Bar Charts & Line Charts..."
- Next in thread: Richard Stockley: "Re: [PHP] Pie Charts & Bar Charts & Line Charts..."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
For basic bars, use tables with divs whose width is set to a percentage of
the table cell size using the style attribute eg:
<table>
<tr>
<td>number of unemployed</td>
<td><div style="background-color: red; width:4.7%"></div></td>
</tr>
</table>
For XY scatters, PHPs dynamic graphic producing capabilities are excellent.
See attached image for what ive done with it (plotting handwriting based on
xy points taken from a writing tablet in a database).
For pies anything 3d, forget anything easy like this. Youre looking at
professional graphing plugins probably.
AndrewH
----- Original Message -----
From: "Karl J. Stubsjoen" <karl <email protected>>
To: "PHP Mailing List" <php-general <email protected>>
Sent: Wednesday, June 13, 2001 1:15 AM
Subject: [PHP] Pie Charts & Bar Charts & Line Charts...
> Hey Guys,
>
> Anyone have any good starting points for delivering charts on the web?
>
> Thanks a bunch.
>
>
> Karl J. Stubsjoen
> www.iexcelinlife.com
> karl <email protected>
> Phone: 602.4000047
- Next message: Andrew Halliday: "Re: [PHP] upload on Win9x"
- Previous message: Ray Hilton: "RE: [PHP] Multipe Tables, Single Query Problem"
- In reply to: Karl J. Stubsjoen: "[PHP] Pie Charts & Bar Charts & Line Charts..."
- Next in thread: Richard Stockley: "Re: [PHP] Pie Charts & Bar Charts & Line Charts..."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

