Does anyone know how to create Pie Charts just using CSS(3 if needed) and HTML5?
+1
A:
You will probably do best to use the upcoming canvas tag rather than explicit CSS3.
Laykes
2010-02-17 11:26:51
Raphael has a brilliant example of pie charts in SVG http://raphaeljs.com/pie.html
Ben Shelock
2010-02-22 19:57:40
ARGGH! By upvoting this, you changed my rep away from 1337.
Eric
2010-02-22 20:34:11
Must ... Downvote ... 10 ... times!
Eric
2010-02-22 21:56:46
That’s about the closest you’ll get. CSS doesn’t yet have a way to produce shapes other than rectangles.
Paul D. Waite
2010-02-17 11:45:46
+3
A:
You might want to take a look at google charts api, I've found it very useful in the past for drawing charts on the fly via plain html.
graphicdivine
2010-02-17 12:29:59
A:
The best thing to do if you want to keep it simple is to use the Google charts API. However if you want more control you could use the Raphael JS Library to create a pie chart with SVG. Here's a very pretty example :)
Ben Shelock
2010-02-22 19:59:13