bar chart and pie chart

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
tamilmani
Forum Commoner
Posts: 39
Joined: Tue Apr 01, 2008 2:53 am

bar chart and pie chart

Post by tamilmani »

Hi All,

I need to create Bar chart and pie chart by using PHP without GD library . Please any one know the solution for this issue. Please help me .

Thanks

Tamilmani Mohan
User avatar
pickle
Briney Mod
Posts: 6445
Joined: Mon Jan 19, 2004 6:11 pm
Location: 53.01N x 112.48W
Contact:

Re: bar chart and pie chart

Post by pickle »

You could use Flash or ImageMagik
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
User avatar
greyhoundcode
Forum Regular
Posts: 613
Joined: Mon Feb 11, 2008 4:22 am

Re: bar chart and pie chart

Post by greyhoundcode »

I asked a similar question not so long ago, and one of the possible solutions (for bar charts if not pie charts) suggested was to do it by CSS - see this post.

The ezComponents graph component is another option which I have used previously and provides excellent results - you can switch drivers and an SVG driver is one of the options, again circumventing the need for the GD lib (though be aware of the issues surrounding SVG and IE).
User avatar
the_last_tamurai
Forum Commoner
Posts: 87
Joined: Wed Feb 28, 2007 8:24 am
Location: cairo
Contact:

Re: bar chart and pie chart

Post by the_last_tamurai »

You can use this http://teethgrinder.co.uk/open-flash-chart/
simple + free
User avatar
greyhoundcode
Forum Regular
Posts: 613
Joined: Mon Feb 11, 2008 4:22 am

Re: bar chart and pie chart

Post by greyhoundcode »

Yeah that looks like quite a good solution.

Also, for anyone else interested in CSS solutions take a look at this pure CSS line graph.
User avatar
Jonah Bron
DevNet Master
Posts: 2764
Joined: Thu Mar 15, 2007 6:28 pm
Location: Redding, California

Re: bar chart and pie chart

Post by Jonah Bron »

Or use the Canvas element.
Post Reply