<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Abhinav Sharma &#187; google charts</title>
	<atom:link href="http://abhinav.ideativeflux.com/tag/google-charts/feed/" rel="self" type="application/rss+xml" />
	<link>http://abhinav.ideativeflux.com</link>
	<description>Founder and Lead Developer</description>
	<lastBuildDate>Sun, 16 Aug 2009 08:30:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PlotKit and Flotr &#8211; JavaScript Graphing Solutions</title>
		<link>http://abhinav.ideativeflux.com/development/plotkit-and-flotr-javascript-graphing-solutions/</link>
		<comments>http://abhinav.ideativeflux.com/development/plotkit-and-flotr-javascript-graphing-solutions/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 15:54:05 +0000</pubDate>
		<dc:creator>Abhinav</dc:creator>
				<category><![CDATA[APIs and Libraries]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[flotr]]></category>
		<category><![CDATA[google charts]]></category>
		<category><![CDATA[graphing]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[plotkit]]></category>
		<category><![CDATA[plotr]]></category>

		<guid isPermaLink="false">http://abhinav.ideativeflux.com/?p=46</guid>
		<description><![CDATA[I&#8217;m pretty happy with the Google Charts API but in case you&#8217;re looking for even more graphing solutions for your website, there are two that are more advanced:
PlotKit
PlotKit is a Chart and Graph Plotting Library for Javascript. It has support for HTML Canvas and also SVG via Adobe SVG Viewer and native browser support.
Flotr
Flotr comes [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pretty happy with the <a href="http://abhinav.ideativeflux.com/development/google-charts-api/">Google Charts API</a> but in case you&#8217;re looking for even more graphing solutions for your website, there are two that are more advanced:</p>
<p><a href="http://www.liquidx.net/plotkit/">PlotKit</a></p>
<blockquote><p>PlotKit is a Chart and Graph Plotting Library for Javascript. It has support for HTML Canvas and also SVG via Adobe SVG Viewer and native browser support.</p></blockquote>
<p><a href="http://solutoire.com/flotr/">Flotr</a></p>
<p>Flotr comes from Plotr, which itself was derived from Plotkit, here&#8217;s the official description:</p>
<blockquote><p>Flotr is a javascript plotting library based on the <a href="http://prototypejs.org/">Prototype Javascript Framework</a> (version 1.6.0.2 at the moment) and inspired by <a title="Flot Google Project Page" href="http://code.google.com/p/flot/">Flot</a> (written by Ole Laursen).</p>
<p>Flotr enables you to draw appealing graphs in most modern browsers with an easy to learn syntax. It comes with great features like legend support, negative value support, mouse tracking, selection support, zoom support, event hooks, CSS styling support and much more.</p></blockquote>
<p>Both are nice solutions, PlotKit itself derived from an older library called CanvasGraph. If you know others, do mention them in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://abhinav.ideativeflux.com/development/plotkit-and-flotr-javascript-graphing-solutions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Charts API</title>
		<link>http://abhinav.ideativeflux.com/development/google-charts-api/</link>
		<comments>http://abhinav.ideativeflux.com/development/google-charts-api/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 17:57:50 +0000</pubDate>
		<dc:creator>Abhinav</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[dynamic charts]]></category>
		<category><![CDATA[google charts]]></category>
		<category><![CDATA[google code]]></category>

		<guid isPermaLink="false">http://abhinav.ideativeflux.com/development/google-charts-api/</guid>
		<description><![CDATA[This is one of the best tools out that that not many web developers know about. The Google Charts API is a great way to visualize data on the fly. While it doesn&#8217;t have too many complex features, it has most of the features most of us would ever need. For example, the Pie Chart [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of the best tools out that that not many web developers know about. The <a href="http://code.google.com/apis/chart/">Google Charts API</a> is a great way to visualize data on the fly. While it doesn&#8217;t have too many complex features, it has most of the features most of us would ever need. For example, the Pie Chart below is being dynamically generated with the following URL:</p>
<blockquote><p>http://chart.apis.google.com/chart?cht=p3&amp;chd=t:90,49&amp;chs=400&#215;150&amp;chl=Ideative%20Flux|Dumb%20Fluxes</p></blockquote>
<p><img src="http://chart.apis.google.com/chart?cht=p3&amp;chd=t:90,49&amp;chs=400x150&amp;chl=Ideative%20Flux|Dumb%20Fluxes" height="150" width="400" /></p>
<p>The following types of charts are available:</p>
<ul>
<li><a href="http://code.google.com/apis/chart/#line_charts">Line chart</a></li>
<li><a href="http://code.google.com/apis/chart/#sparkline">Sparkline</a></li>
<li><a href="http://code.google.com/apis/chart/#bar_charts">Bar chart</a></li>
<li><a href="http://code.google.com/apis/chart/#pie_charts">Pie chart</a></li>
<li><a href="http://code.google.com/apis/chart/#venn">Venn diagram</a></li>
<li><a href="http://code.google.com/apis/chart/#scatter_plot">Scatter plot</a></li>
<li><a href="http://code.google.com/apis/chart/#radar">Radar chart</a></li>
<li><a href="http://code.google.com/apis/chart/#maps">Map</a></li>
</ul>
<p>I&#8217;ve already put it on one test, it powers the stats visualization for <a href="http://apps.facebook.com/iplcricket/players.php">player performances</a> on my <a href="http://apps.facebook.com/iplcricket/">Indian Premier League</a> application for Facebook.</p>
]]></content:encoded>
			<wfw:commentRss>http://abhinav.ideativeflux.com/development/google-charts-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
