![]() |
|
|
|
| ||||||
|
Welcome to the The ProgrammersTalk Community forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
![]() |
![]() | | LinkBack (2) | Thread Tools | Display Modes | ![]() |
| ||||
| Flash Graphs for Many Languages In doing some research for a couple of projects, I came across Open Flash Chart - which absolutely rocks! If you need to add a graph to your web application, this is definitely the way to go. Just thought I'd share. NOTE: I have also offered a bit of a code change for easier programming in PHP for pie charts. The gradient aspect of their pie chart doesn't line up so well and wasn't as pleasing as I'd like (unlike the glass bar charts which are cool). Change this snippet and you'll be able to adjust whether pie charts show a gradient graph or not: Code: function pie( $alpha, $line_colour, $label_colour, $gradient = true, $border_size = false )
{
$this->pie = $alpha.','.$line_colour.','.$label_colour;
if (!$gradient) {
$this->pie .= ','.!$gradient;
}
if ($border_size) {
if ($gradient === false) {
$this->pie .= ',';
}
$this->pie .= ','.$border_size;
}
} |
| The Following 2 Users Say Thank You to TeraTask For This Useful Post: | ||
HelloWorld (11-04-2007), Lee (11-04-2007) | ||
| |
| ||||
| Thanks mate, i have been looking recently at things like this. |
| |||
| That's a nice one. Have you tried FusionCharts? Both FusionCharts v3 and FusionCharts Free work well with PHP. The documentation page describes it more. You can read it at: FusionCharts Free Documentation |
| The Following 2 Users Say Thank You to flash_tech For This Useful Post: | ||
HelloWorld (11-05-2007), TeraTask (11-05-2007) | ||
| ||||
| The math portion of this thread was split off to Mathematics... |
| |||
| Free version of FusionCharts do support labels. It supports rotating long labels along x-axis so that it does not look odd. FusionCharts Free v2 is going to be released soon with more exciting features. I have seen the announcement somewhere on their site. |
| The Following 2 Users Say Thank You to flash_tech For This Useful Post: | ||
HelloWorld (11-05-2007), TeraTask (11-05-2007) | ||
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.programmerstalk.net/thread1226.html | |||
| Posted By | For | Type | Date |
| flash_graph - Neseek Blog Search Engine | This thread | Refback | 11-22-2007 09:11 PM |
| Flash Graphs for Many Languages by Graph charts | This thread | Refback | 11-12-2007 01:17 AM |