<?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>P.C.Kabeer &#187; JavaScript</title>
	<atom:link href="http://www.pckabeer.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pckabeer.com</link>
	<description>The crazy life with crazy dreams</description>
	<lastBuildDate>Wed, 10 Mar 2010 03:42:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Highcharts: Really nice charting API</title>
		<link>http://www.pckabeer.com/2009/12/11/highcharts-really-nice-charting-api/</link>
		<comments>http://www.pckabeer.com/2009/12/11/highcharts-really-nice-charting-api/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 03:41:18 +0000</pubDate>
		<dc:creator>pckabeer</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[WebDevelopment]]></category>

		<guid isPermaLink="false">http://www.pckabeer.com/?p=57</guid>
		<description><![CDATA[We all want better and better charting libraries. Dojo has some good stuff, Protovis is a good option, and there are many many more (put your favourite below!). The latest guy in the ring is Highcharts uses either jQuery or MooTools for some common JavaScript tasks. In addition, Internet Explorer needs ExCanvas which emulates the [...]]]></description>
			<content:encoded><![CDATA[<p>We all want better and better charting libraries. Dojo has some good stuff, <a href="http://vis.stanford.edu/protovis/">Protovis</a> is a good option, and there are many many more (put your favourite below!).</p>
<p>The latest guy in the ring is <a href="http://highcharts.com/">Highcharts</a> uses either jQuery or MooTools for some common JavaScript tasks. In addition, Internet Explorer needs ExCanvas which emulates the Canvas element.</p>
<p>For some simple code like this:</p>
<p>[codesyntax lang="javascript"]<br />
var chart1 = new Highcharts.Chart({<br />
chart: {<br />
renderTo: &#8216;chart-container-1&#8242;,<br />
defaultSeriesType: &#8216;bar&#8217;<br />
},<br />
title: {<br />
text: &#8216;Fruit Consumption&#8217;<br />
},<br />
xAxis: {<br />
categories: ['Apples', 'Bananas', 'Oranges]<br />
},<br />
yAxis: {<br />
title: {<br />
text: &#8216;Fruit eaten&#8217;<br />
}<br />
},<br />
series: [{<br />
name: 'Jane',<br />
data: [1, 0, 4]<br />
}, {<br />
name: &#8216;John&#8217;,<br />
data: [5, 7, 3]<br />
}]<br />
});<br />
[/codesyntax]</p>
<p>You can get nice charts like this:</p>
<p><img class="alignnone size-full wp-image-69" title="highcharts" src="http://www.pckabeer.com/wp-content/uploads/2009/12/highcharts.png" alt="highcharts" width="698" height="236" /></p>
<p>Be sure to check out the <a href="http://highcharts.com/demo/">demo gallery</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pckabeer.com/2009/12/11/highcharts-really-nice-charting-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
