What powers Google Charts? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T20:51:58Zhttp://stackoverflow.com/feeds/question/120601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/120601/what-powers-google-charts1What powers Google Charts?Bharani2008-09-23T12:17:45Z2009-11-04T18:53:08Z
<p>Does any body know what powers Google Charts? I have been using it for a while but not sure what Google used to build it. </p>
http://stackoverflow.com/questions/120601/what-powers-google-charts/120634#1206340Answer by Prakash for What powers Google Charts?Prakash2008-09-23T12:25:20Z2008-09-23T12:25:20Z<p>I feel the touch of SVG there..</p>
<p>Maybe Internal engine to generate and work with SVG and export images as PNG images.</p>
<p>Any other thoughts?</p>
http://stackoverflow.com/questions/120601/what-powers-google-charts/120677#1206770Answer by davidg for What powers Google Charts?davidg2008-09-23T12:32:12Z2008-09-23T12:32:12Z<p>Just guessing here: they must be using Python with some charting library and then returning the produced files. There are a few tools to do charts in Python. <a href="http://matplotlib.sourceforge.net/" rel="nofollow">Matplotlib</a> and <a href="http://www.reportlab.org/downloads.html" rel="nofollow">ReportLab</a> come to mind.</p>
http://stackoverflow.com/questions/120601/what-powers-google-charts/120690#1206900Answer by Erik for What powers Google Charts?Erik 2008-09-23T12:34:01Z2008-09-23T12:34:01Z<p>Probably just libraries they have written themselves, it's pretty easy to throw together a chart drawing library, but hard to do it right. So someone hacked together a custom java/C++/python library using already available stuff to be able to update the graphics of his charts easily, and then it extended.</p>
<p>That's the great thing about it, that you can make your own version without much effort, just change the URL and design your own flash animation of the chart. And that the data available in the graphs is easily webscraped.. </p>
<p>Just theory, but something like this is perfect small project to do in 20% of your time.</p>
http://stackoverflow.com/questions/120601/what-powers-google-charts/120699#1206992Answer by Steve g for What powers Google Charts?Steve g2008-09-23T12:35:02Z2008-09-23T12:35:02Z<p>Everything at google is done in C++, Java, or Python. I'm guessing the internals is probably done in one of the latter two.</p>
http://stackoverflow.com/questions/120601/what-powers-google-charts/121156#1211562Answer by Bharani for What powers Google Charts?Bharani2008-09-23T13:57:07Z2008-09-23T13:57:07Z<p>Mathplotlib was my guess too - ( thanks "davidg" ). </p>
<p>SVG - got my own doubts because you don't have to go the length of server side SVG just to produce a static image. No panning or scaling required so not sure if they used SVG</p>
http://stackoverflow.com/questions/120601/what-powers-google-charts/265724#2657243Answer by pyinsci for What powers Google Charts?pyinsci2008-11-05T16:30:49Z2009-11-04T18:53:08Z<p>They bought the <a href="http://www.gapminder.org/" rel="nofollow">Gapminder</a> library for doing charts. It's a Java library as far as I know, but they don't seem very anxious to release the code as open-source.</p>
http://stackoverflow.com/questions/120601/what-powers-google-charts/1675797#16757970Answer by Jmini for What powers Google Charts?Jmini2009-11-04T18:40:30Z2009-11-04T18:40:30Z<p>What is sure is that you can do it with a Java servlet.</p>
<p><a href="http://www.jfree.org/eastwood/" rel="nofollow">Eastwood</a> is an open source implementation of the Google Chart API.
(powered by <a href="http://www.jfree.org/jfreechart/" rel="nofollow">JFreeChart</a>)</p>