What powers Google Charts? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:51:58Z http://stackoverflow.com/feeds/question/120601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120601/what-powers-google-charts 1 What powers Google Charts? Bharani 2008-09-23T12:17:45Z 2009-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#120634 0 Answer by Prakash for What powers Google Charts? Prakash 2008-09-23T12:25:20Z 2008-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#120677 0 Answer by davidg for What powers Google Charts? davidg 2008-09-23T12:32:12Z 2008-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#120690 0 Answer by Erik for What powers Google Charts? Erik 2008-09-23T12:34:01Z 2008-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#120699 2 Answer by Steve g for What powers Google Charts? Steve g 2008-09-23T12:35:02Z 2008-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#121156 2 Answer by Bharani for What powers Google Charts? Bharani 2008-09-23T13:57:07Z 2008-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#265724 3 Answer by pyinsci for What powers Google Charts? pyinsci 2008-11-05T16:30:49Z 2009-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#1675797 0 Answer by Jmini for What powers Google Charts? Jmini 2009-11-04T18:40:30Z 2009-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>