<?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>blogfreakz.com &#187; Charts/Graph</title>
	<atom:link href="http://blogfreakz.com/category/charts/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>Web Development, Web Trends, open source resources</description>
	<lastBuildDate>Fri, 03 Feb 2012 12:43:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Create a Flexible jQuery Data Heat Map</title>
		<link>http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/</link>
		<comments>http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 10:45:06 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[heat map]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[tables design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24575</guid>
		<description><![CDATA[Sometimes reading a table&#8217;s long and numerous columns can be quite a very cumbersome and tedious task. You want your readers to immediately see the whole picture once they glance at your table&#8217;s contents. This is where Design Chemical’s Data Heat Map can help. When you&#8217;re dealing with hierarchical and/or numeric data, or data with [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;"> </span></strong>Sometimes reading a table&#8217;s long and numerous columns can be quite a very cumbersome and tedious task. You want your readers to immediately see the whole picture once they glance at your table&#8217;s contents.</p>
<p><a href="http://www.designchemical.com/media/images/jquery_data_heat_map.png"><img class="aligncenter size-large wp-image-24576" title="Flexible jQuery Data Heat Map" src="http://blogfreakz.com/wp-content/uploads/2012/01/118-600x250.jpg" alt="118 600x250 Create a Flexible jQuery Data Heat Map" width="600" height="250" /></a></p>
<p>This is where <strong><a href="http://www.designchemical.com/blog/index.php/jquery/jquery-tutorial-create-a-flexible-data-heat-map/">Design Chemical</a></strong>’s Data Heat Map can help. When you&#8217;re dealing with hierarchical and/or numeric data, or data with a maximum and minimum value, the heat map adds varying shades of a particular color, making it easier for the viewer to quickly spot the highest and lowest value. It can be a nice alternative for sorting data in ascending or descending order because you eliminate the user&#8217;s need to click on a button just to rearrange the data in a particular column.</p>
<p><a href="http://www.designchemical.com/lab/jquery/demo/jquery_data_heat_map_demo.htm"> </a>The two main objectives of this tutorial are:</p>
<ul>
<li>To capture and statistically analyze all data points</li>
<li>To provide a method of grouping the data and be able to identify what formatting should be applied</li>
</ul>
<p>Let’s start with the usual basic HTML markup. We’ll just keep the code short by only including one row of data with the CSS classes but feel free to add as many rows as you like  if you want to make it look like the one in the <a href="http://www.designchemical.com/lab/jquery/demo/jquery_data_heat_map_demo.htm"><strong>demo page</strong></a> or the image sample above:</p>
<p><strong>HTML</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><strong><span style="color: #003366;">&lt;table cellpadding=&#8221;0&#8243; cellspacing=&#8221;0&#8243; border=&#8221;0&#8243;  &gt;</span></strong>&nbsp;</p>
<p><strong><span style="color: #003366;">&lt;thead&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;tr&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;th  &gt;Title&lt;/th&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;th&gt;data   1&lt;/th&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;th&gt;data   2&lt;/th&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;th&gt;data   3&lt;/th&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;th&gt;data   4&lt;/th&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;th&gt;data   5&lt;/th&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;th  &gt;data 6&lt;/th&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;/tr&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;/thead&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;tbody&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;tr  &gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;td  &gt;Wanda&lt;/td&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;td&gt;25&lt;/td&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;td&gt;55&lt;/td&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;td&gt;26&lt;/td&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;td&gt;19&lt;/td&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;td&gt;39&lt;/td&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;td&gt;21&lt;/td&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;/tr&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;/tbody&gt;</span></strong></p>
<p><strong><span style="color: #003366;">&lt;/table&gt;</span></strong></td>
</tr>
</tbody>
</table>
<p>Let’s go over the code first part by part.</p>
<p>First thing we’ll do is capture and analyze the data, meaning we have to find out the largest value within the range. We do this by creating an array of all the data points and then returning the maximum value:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><strong><span style="color: #003366;">&lt;script type=&#8221;text/JavaScript&#8221;&gt;</span></strong>&nbsp;</p>
<p><strong><span style="color: #003366;">$(document).ready(function(){</span></strong></p>
<p><strong><span style="color: #003366;">// Function to get the max value in an Array</span></strong></p>
<p><strong><span style="color: #003366;">Array.max = function(array){</span></strong></p>
<p><strong><span style="color: #003366;">return   Math.max.apply(Math,array);</span></strong></p>
<p><strong><span style="color: #003366;">};</span></strong></p>
<p><strong><span style="color: #003366;">// Get all data values from our table cells   making sure to ignore the first column of text</span></strong></p>
<p><strong><span style="color: #003366;">// Use the parseInt function to convert the   text string to a number</span></strong></p>
<p><strong><span style="color: #003366;">var counts= $(&#8216;.heat-map tbody   td&#8217;).not(&#8216;.stats-title&#8217;).map(function() {</span></strong></p>
<p><strong><span style="color: #003366;">return   parseInt($(this).text());</span></strong></p>
<p><strong><span style="color: #003366;">}).get();</span></strong></p>
<p><strong><span style="color: #003366;">// run max value function and store in   variable</span></strong></p>
<p><strong><span style="color: #003366;">var max = Array.max(counts);</span></strong></p>
<p><strong><span style="color: #003366;">});</span></strong></p>
<p><strong><span style="color: #003366;">&lt;/script&gt;</span></strong></td>
</tr>
</tbody>
</table>
<p>Next is to group the data points. We’ll be using the percentage (%) of each value from the max value to find exactly where the data point is positioned on a scale of 1-100.</p>
<p>This is critical to create the heat map as this scale is what we’ll use to dynamically generate the CSS style. You can adjust the max number (100) to suit your data and style of heat map. In addition, we only want to use integers so we also include the rounding off of the results.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><strong><span style="color: #003366;">n = 100; // Declare the number of groups</span></strong>&nbsp;</p>
<p><strong><span style="color: #003366;">// Loop through each data point and calculate its % value</span></strong></p>
<p><strong><span style="color: #003366;">$(&#8216;.heat-map tbody td&#8217;).not(&#8216;.stats-title&#8217;).each(function(){</span></strong></p>
<p><strong><span style="color: #003366;">var val = parseInt($(this).text());</span></strong></p>
<p><strong><span style="color: #003366;">var pos =   parseInt((Math.round((val/max)*100)).toFixed(0));</span></strong></p>
<p><strong><span style="color: #003366;">});</span></strong></td>
</tr>
</tbody>
</table>
<p>The above code is still incomplete since we still have to add the actual formatting into the same loop.</p>
<p>To create the heat map effect we are basically going to use background color.</p>
<p>Technically there is no restriction on how you apply the styles, and background color is only one option. The code is fairly flexible and some minor adjustments can be applied to font size, container size, background image, etc.</p>
<p>Color is easy because we can directly calculate each color value between 2 defined colous – our start point and the end point, which across 100 points should create a gradient style effect.</p>
<p>To calculate color we need to use the RGB values, which are 0 to 255 for Red, Blue and Green.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><strong><span style="color: #003366;">// Define the ending colour, which is white</span></strong>&nbsp;</p>
<p><strong><span style="color: #003366;">xr = 255; // Red value</span></strong></p>
<p><strong><span style="color: #003366;">xg = 255; // Green value</span></strong></p>
<p><strong><span style="color: #003366;">xb = 255; // Blue value</span></strong></p>
<p><strong><span style="color: #003366;">// Define the starting colour #f32075</span></strong></p>
<p><strong><span style="color: #003366;">yr = 243; // Red value</span></strong></p>
<p><strong><span style="color: #003366;">yg = 32; // Green value</span></strong></p>
<p><strong><span style="color: #003366;">yb = 117; // Blue value</span></strong></p>
<p><strong><span style="color: #003366;">// Calculate a specific colour point</span></strong></p>
<p><strong><span style="color: #003366;">// pos &#8211; calculated in the earlier code identifies where on the scale   the data point is</span></strong></p>
<p><strong><span style="color: #003366;">red = parseInt((xr + (( pos * (yr &#8211; xr)) / (n-1))).toFixed(0));</span></strong></p>
<p><strong><span style="color: #003366;">green = parseInt((xg + (( pos * (yg &#8211; xg)) / (n-1))).toFixed(0));</span></strong></p>
<p><strong><span style="color: #003366;">blue = parseInt((xb + (( pos * (yb &#8211; xb)) / (n-1))).toFixed(0));</span></strong></p>
<p><strong><span style="color: #003366;">// Once we have our RGB values we combine them to create our CSS code</span></strong></p>
<p><strong><span style="color: #003366;">clr = &#8216;rgb(&#8216;+red+&#8217;,'+green+&#8217;,'+blue+&#8217;)';</span></strong></td>
</tr>
</tbody>
</table>
<p>Finally we apply the new RGB value (heat map style) to each data point by setting the background colour of the table cell.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><strong><span style="color: #003366;">$(this).css({backgroundColor:clr});</span></strong></td>
</tr>
</tbody>
</table>
<p>Below are the combined parts of the code to create the complete heat map function.</p>
<p><strong>Complete jQuery code</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;"><strong>&lt;script type=&#8221;text/JavaScript&#8221;&gt;</strong></span>&nbsp;</p>
<p><span style="color: #003366;"><strong>$(document).ready(function(){</strong></span></p>
<p><span style="color: #003366;"><strong>// Function to get the max value in an Array</strong></span></p>
<p><span style="color: #003366;"><strong>Array.max = function(array){</strong></span></p>
<p><span style="color: #003366;"><strong>return   Math.max.apply(Math,array);</strong></span></p>
<p><span style="color: #003366;"><strong>};</strong></span></p>
<p><span style="color: #003366;"><strong>// Get all data values from our table cells   making sure to ignore the first column of text</strong></span></p>
<p><span style="color: #003366;"><strong>// Use the parseInt function to convert the   text string to a number</strong></span></p>
<p><span style="color: #003366;"><strong>var counts= $(&#8216;.heat-map tbody   td&#8217;).not(&#8216;.stats-title&#8217;).map(function() {</strong></span></p>
<p><span style="color: #003366;"><strong>return   parseInt($(this).text());</strong></span></p>
<p><span style="color: #003366;"><strong>}).get();</strong></span></p>
<p><span style="color: #003366;"><strong>// run max value function and store in   variable</strong></span></p>
<p><span style="color: #003366;"><strong>var max = Array.max(counts);</strong></span></p>
<p><span style="color: #003366;"><strong>n = 100; // Declare the number of groups</strong></span></p>
<p><span style="color: #003366;"><strong>// Define the ending colour, which is white</strong></span></p>
<p><span style="color: #003366;"><strong>xr = 255; // Red value</strong></span></p>
<p><span style="color: #003366;"><strong>xg = 255; // Green value</strong></span></p>
<p><span style="color: #003366;"><strong>xb = 255; // Blue value</strong></span></p>
<p><span style="color: #003366;"><strong>// Define the starting colour #f32075</strong></span></p>
<p><span style="color: #003366;"><strong>yr = 243; // Red value</strong></span></p>
<p><span style="color: #003366;"><strong>yg = 32; // Green value</strong></span></p>
<p><span style="color: #003366;"><strong>yb = 117; // Blue value</strong></span></p>
<p><span style="color: #003366;"><strong>// Loop through each data point and calculate   its % value</strong></span></p>
<p><span style="color: #003366;"><strong>$(&#8216;.heat-map tbody   td&#8217;).not(&#8216;.stats-title&#8217;).each(function(){</strong></span></p>
<p><span style="color: #003366;"><strong>var val =   parseInt($(this).text());</strong></span></p>
<p><span style="color: #003366;"><strong>var pos =   parseInt((Math.round((val/max)*100)).toFixed(0));</strong></span></p>
<p><span style="color: #003366;"><strong>red = parseInt((xr +   (( pos * (yr &#8211; xr)) / (n-1))).toFixed(0));</strong></span></p>
<p><span style="color: #003366;"><strong>green = parseInt((xg   + (( pos * (yg &#8211; xg)) / (n-1))).toFixed(0));</strong></span></p>
<p><span style="color: #003366;"><strong>blue = parseInt((xb +   (( pos * (yb &#8211; xb)) / (n-1))).toFixed(0));</strong></span></p>
<p><span style="color: #003366;"><strong>clr =   &#8216;rgb(&#8216;+red+&#8217;,'+green+&#8217;,'+blue+&#8217;)';</strong></span></p>
<p><span style="color: #003366;"><strong>});</strong></span></p>
<p><span style="color: #003366;"><strong>});</strong></span></p>
<p><span style="color: #003366;"><strong>&lt;/script&gt;</strong></span></td>
</tr>
</tbody>
</table>
<p>If you want to completely change the look (i.e. the colors of the cells) of the heat map, all you have to do is change the start and end color RGB values. Have fun experimenting with the values and customizing the look of your tables!</p>
<p><a href="http://www.designchemical.com/lab/jquery/demo/download/jquery-data-heat-map.zip"><strong>Download Source Files</strong></a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="jquery heat map">jquery heat map</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="heat map javascript table">heat map javascript table</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="table heat map jquery">table heat map jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="rgb code table">rgb code table</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="jquery map sample">jquery map sample</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="jquery image heatmap">jquery image heatmap</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="jquery heatmap">jquery heatmap</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="jquery heat map plugin">jquery heat map plugin</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="create jquery function">create jquery function</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/" title="jquery flexible table">jquery flexible table</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/create-a-flexible-jquery-data-heat-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jStat &#8211; JavaScript Statistical Library</title>
		<link>http://blogfreakz.com/javascript/jstat-javascript-statistical-library/</link>
		<comments>http://blogfreakz.com/javascript/jstat-javascript-statistical-library/#comments</comments>
		<pubDate>Sat, 19 Mar 2011 03:45:38 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[graph]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=17645</guid>
		<description><![CDATA[jStat is a statistical library written in JavaScript that allows you to perform advanced statistical operations without the need of a dedicated statistical language (i.e. MATLAB or R). The majority of jStat functions can be used independently of any other libraries. However, the plotting functionality of jStat is based on the jQuery plugin &#8211; flot. [...]]]></description>
			<content:encoded><![CDATA[<p><a title="jstat" rel="nofollow" href="http://www.jstat.org" target="_blank"><strong>jStat</strong></a> is a statistical library written in JavaScript that         allows you to perform advanced statistical operations without the need of         a dedicated statistical language (i.e. <a rel="nofollow" href="http://www.mathworks.co.uk/products/matlab/">MATLAB</a> or <a rel="nofollow" href="http://www.r-project.org/">R</a>). The majority of <strong>jStat</strong> functions can be used independently         of any other libraries. However, the plotting functionality of <strong>jStat</strong> is based on the <a rel="nofollow" href="http://code.google.com/p/flot/">jQuery plugin &#8211; flot</a>.</p>
<p><span id="more-17645"></span><a rel="nofollow" href="http://www.jstat.org"><img class="alignnone size-full wp-image-17647" title="jstat" src="http://blogfreakz.com/wp-content/uploads/2011/03/jstat.jpg" alt="jstat jStat   JavaScript Statistical Library" width="600" height="300" /></a></p>
<p><strong>jStat</strong> only uses elements that adhere to the jQuery UI ThemeRoller         styles so any jQuery UI theme can be used. <strong>jStat</strong> uses numerous advanced statistical functions that require         considerable processing power. This requirement results in differing user         experiences depending upon your browser choice. Currently, the fastest browser         is <strong>Google Chrome</strong>. <strong>jStat</strong> should work in all major browsers. Most of the limitations arise         from the use of the HTML 5 <em>canvas</em> element when plotting.</p>
<p>Requirements: jQuery Framework, Flot<br />
Demo: <a title="demo" rel="nofollow" href="http://www.jstat.org/" target="_blank">http://www.jstat.org/</a><br />
License:  MIT License<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="javascript stats package">javascript stats package</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="javascript statistics package">javascript statistics package</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="javascript stats">javascript stats</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="jstat javascript">jstat javascript</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="javascript stats graphics">javascript stats graphics</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="javascript statistical functions">javascript statistical functions</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="javascript statistics numbers library">javascript statistics numbers library</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="javascript graphics statistics">javascript graphics statistics</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="jquery statistical package">jquery statistical package</a></li>
<li><a href="http://blogfreakz.com/javascript/jstat-javascript-statistical-library/" title="jstat max javascript">jstat max javascript</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/javascript/jstat-javascript-statistical-library/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>AwesomeChartJS &#8211; Simple Javascript &#8211; HTML 5 Charting Library</title>
		<link>http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/</link>
		<comments>http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 19:07:50 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=15286</guid>
		<description><![CDATA[AwesomeChartJS is a simple Javascript library that can be used to create charts based on the HTML 5 canvas element. The main goal during development was to pick sane defaults in order to let the user create simple charts quickly with just a couple of lines of code. One can create at almost no time [...]]]></description>
			<content:encoded><![CDATA[<p><a title="AwesomeChartJS" rel="nofollow" href="http://cyberpython.github.com/AwesomeChartJS/" target="_blank">AwesomeChartJS</a> is a simple Javascript  library that can be used to <strong>create charts based on the HTML 5 canvas  element</strong>. The main goal during development was to pick  sane defaults in order to let the user create simple charts quickly  with just a couple of lines of code. One can create at almost no time bar, pie, doughnut and Pareto charts.</p>
<p><span id="more-15286"></span></p>
<p><a rel="nofollow" href="http://cyberpython.github.com/AwesomeChartJS/"><img class="alignnone size-full wp-image-15686" title="AwesomeChartJS" src="http://blogfreakz.com/wp-content/uploads/2011/02/AwesomeChartJS.jpg" alt="AwesomeChartJS AwesomeChartJS   Simple Javascript   HTML 5 Charting Library " width="600" height="396" /></a></p>
<p>AwesomeChartJS  is  easy to use, just create a new AwesomeChart object and  pass the canvas element&#8217;s id as a parameter to the constructor. Then set  the chart&#8217;s data and call the object&#8217;s draw() method. That&#8217;s it! Your  chart is ready!</p>
<p>AwesomeChartJS is Fully customizable. You Control how your chart looks by defining:</p>
<ul>
<li>Font styles</li>
<li>Fill and stroke styles for bars and pies</li>
<li>Margin sizes</li>
</ul>
<p class="download"><strong>Requirements</strong>: Modern Browser (HTML 5 support)<br />
<strong>Demo</strong>: <a title="AwesomeChartJS" rel="nofollow" href="http://cyberpython.github.com/AwesomeChartJS/" target="_blank">http://cyberpython.github.com/AwesomeChartJS/</a><br />
<strong>License</strong>: Apache License v2.0</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="html charting">html charting</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="html5 chart library">html5 chart library</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="html5 charts">html5 charts</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="AwesomeChartJS">AwesomeChartJS</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="html5 charts library">html5 charts library</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="html 5 charting">html 5 charting</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="html chart library">html chart library</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="html5 chart">html5 chart</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="html5 charting">html5 charting</a></li>
<li><a href="http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/" title="HTML5 charting library">HTML5 charting library</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/html5/awesomechartjs-simple-javascript-html-5-charting-library/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Arbor.js &#8211; Graph Vsualization Library Using Web Workers &amp; jQuery</title>
		<link>http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/</link>
		<comments>http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 15:20:58 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[graph]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=15170</guid>
		<description><![CDATA[Arbor is a graph visualization library built with web workers and jQuery. Rather than trying to be an all-encompassing framework, arbor provides an efficient, force-directed layout algorithm plus abstractions for graph organization and screen refresh handling. It leaves the actual screen-drawing to you. This means you can use it with canvas, SVG, or even positioned [...]]]></description>
			<content:encoded><![CDATA[<p><a title="arborjs" rel="nofollow" href="http://arborjs.org/" target="_blank">Arbor</a> is a <strong>graph visualization library built with web workers and  jQuery</strong>. Rather than trying to be an all-encompassing framework, arbor  provides an efficient, force-directed layout algorithm plus abstractions  for graph organization and screen refresh handling.</p>
<p><span id="more-15170"></span></p>
<p><a rel="nofollow" href="http://arborjs.org/"><img class="alignnone size-full wp-image-15172" title="arborjs" src="http://blogfreakz.com/wp-content/uploads/2011/01/arborjs.jpg" alt="arborjs Arbor.js   Graph Vsualization Library Using Web Workers & jQuery " width="600" height="289" /></a></p>
<p>It leaves the actual screen-drawing to you. This means you can use it with canvas, <strong>SVG</strong>, or even positioned <strong>HTML</strong> elements; whatever display approach is appropriate for your project and your performance needs.</p>
<p>As a result, the code you write with it can be focused on the  things that make your project unique – the graph data and your visual  style – rather than spending time on the physics math that makes the  layouts possible.</p>
<p class="download">Requirements: jQuery<br />
Demo: <a rel="nofollow title=" href="http://arborjs.org/" target="_blank">http://arborjs.org</a><br />
License: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="jquery directed graph">jquery directed graph</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="arbor js">arbor js</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="arborjs">arborjs</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="jquery arbor">jquery arbor</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="arbor jquery">arbor jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="directed graph jquery">directed graph jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="jquery force directed graph">jquery force directed graph</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="jsgraph">jsgraph</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="jquery force directed">jquery force directed</a></li>
<li><a href="http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/" title="js graph">js graph</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/arborjs-graph-vsualization-library-using-web-workers-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25+ Powerful Javascript Chart Libraries</title>
		<link>http://blogfreakz.com/javascript/javascript-chart-library/</link>
		<comments>http://blogfreakz.com/javascript/javascript-chart-library/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 13:00:03 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[graph]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=12979</guid>
		<description><![CDATA[Graphs and charts are the best way to display information at hand to the user and make it easy to read and understand. These visual structures allow you to easily simplify complex data and output easier to understand content. Thanks to Javascript and a bunch of talented developers, which is give us solutions for easily [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Graphs</strong> and <strong>charts</strong> are the best way to display information at hand to the user  and make it easy to read and understand.  These visual structures allow you to easily simplify complex data and output easier to understand content.<br />
Thanks to Javascript and a bunch of talented developers, which is give us solutions for easily adding graphs and charts to our web projects. In this post, we  compiled together 25+ useful javascript solutions for charts and Graphs. Some of them are written for jQuery and MooTools. Hope you find this articles useful.</p>
<p><span id="more-12979"></span></p>
<h3><a title="jQuery Visualize" rel="nofollow" href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/" target="_blank">jQuery Visualize</a></h3>
<p><a rel="nofollow" href="http://dwpe.googlecode.com/svn/trunk/charting/vanilla.html"><img class="alignnone size-full wp-image-13002" title="jQuery-visualize" src="http://blogfreakz.com/wp-content/uploads/2010/11/jQuery-visualize.jpg" alt="jQuery visualize 25+ Powerful Javascript Chart Libraries " width="600" height="256" /></a></p>
<p><strong>jQuery Visualize</strong> is JavaScript library that allow us to generate bar, line, area, and pie chart visualizations data from an HTML table using the HTML5 canvas element. This technique provides a simple way to generate charts, but more importantly, because it bases the chart on data already in the page in an HTML table element, it is accessible to people who browse the web with a screen reader or other assistive technology, or with browsers that don&#8217;t fully support JavaScript or HTML5 Canvas.</p>
<h3><a title="Google Chart Tools" rel="nofollow" href="http://code.google.com/apis/charttools/index.html" target="_blank">Google Chart Tools</a></h3>
<p><a rel="nofollow" href="http://code.google.com/apis/charttools/index.html"><img class="alignnone size-full wp-image-13004" title="google-chart" src="http://blogfreakz.com/wp-content/uploads/2010/11/google-chart.jpg" alt="google chart 25+ Powerful Javascript Chart Libraries " width="600" height="189" /></a></p>
<p>The Google Chart Tools enable adding live charts to any web page. It has A rich gallery of visualizations provided as</p>
<ul>
<li>Image charts &#8211; using a simple URL request to a Google chart server</li>
</ul>
<ul>
<li>Interactive charts &#8211; using a Google developed JavaScript library</li>
</ul>
<p>Google Chart can read live data from a variety of <a rel="nofollow" href="http://code.google.com/apis/visualization/documentation/toolsgallery.html">data sources</a>, simple to use and free.</p>
<h3><a title="flot" rel="nofollow" href="http://code.google.com/p/flot/" target="_blank">flot</a></h3>
<p><a rel="nofollow" href="http://code.google.com/p/flot/"><img class="alignnone size-full wp-image-13006" title="flot" src="http://blogfreakz.com/wp-content/uploads/2010/11/flot.jpg" alt="flot 25+ Powerful Javascript Chart Libraries " width="600" height="303" /></a></p>
<p>Flot is a pure Javascript plotting library for jQuery. It produces graphical <strong>plots</strong> of arbitrary datasets on-the-fly client-side. The focus is on <strong>simple</strong> usage (all settings are optional), <strong>attractive</strong> looks and <strong>interactive</strong> features like zooming and mouse tracking. The  plugin works with Internet Explorer 6/7/8, Firefox 2.x+, Safari 3.0+,  Opera 9.5+ and Konqueror 4.x+ with the HTML canvas tag (the <a rel="nofollow" href="http://excanvas.sourceforge.net/">excanvas</a> Javascript emulation helper is used for IE).</p>
<h3><a rel="nofollow" href="http://www.highcharts.com/">Highcharts</a></h3>
<p><a rel="nofollow" href="http://www.highcharts.com/"><img class="alignnone size-full wp-image-13007" title="highchart" src="http://blogfreakz.com/wp-content/uploads/2010/11/highchart.jpg" alt="highchart 25+ Powerful Javascript Chart Libraries " width="600" height="262" /></a></p>
<p>Highcharts is a charting library written in pure JavaScript, offering an  easy way of adding interactive charts to your web site or web  application. Highcharts currently supports line, spline, area,  areaspline, column, bar, pie and scatter chart types. It works in all modern browsers including the iPhone/iPad and Internet  Explorer from version 6. Standard browsers use SVG for the graphics  rendering. In Internet Explorer graphics are drawn using VML.</p>
<h3><a title="Raphaël" rel="nofollow" href="http://raphaeljs.com/" target="_blank">Raphaël</a></h3>
<p><a rel="nofollow" href="http://raphaeljs.com/"><img title="Raphaël" src="../wp-content/uploads/2010/11/Rapha%C3%ABl.jpg" alt="Rapha%C3%ABl 25+ Powerful Javascript Chart Libraries " width="600" height="247" /></a></p>
<p><strong>Raphaël</strong> is a small JavaScript library that should simplify your work  with  vector graphics on the web. If you want to create your own specific   chart or image crop and rotate widget, for example, you can achieve it   simply and easily with this library. Raphaël ['ræfe??l] uses the <a title="Sclable Vector Graphics" rel="nofollow">SVG </a><a title="World Wide Web Consortium" rel="nofollow">W3C Recommendation and </a><a title="Vector Markup Language" rel="nofollow">VML as a base for creating graphics. Raphaël currently supports Firefox 3.0+, Safari 3.0+, Chrome 5.0+, Opera 9.5+ and Internet Explorer 6.0+.</a></p>
<h3><a title="Created with Raphaël gRaphaël—JavaScript Library" rel="nofollow" href="http://g.raphaeljs.com/" target="_blank">gRaphaël</a></h3>
<p><a rel="nofollow" href="http://g.raphaeljs.com/"><img class="alignnone size-full wp-image-13008" title="gRaphaël" src="http://blogfreakz.com/wp-content/uploads/2010/11/gRaphaël.jpg" alt="gRaphaël 25+ Powerful Javascript Chart Libraries " width="600" height="570" /></a></p>
<p>gRaphaël’s goal is to help you create stunning charts on your website. It is based on <a title="Raphaël—JavaScript Library" rel="nofollow" href="http://raphaeljs.com/">Raphaël</a> graphics library. gRaphaël currently supports Firefox 3.0+, Safari 3.0+, Opera 9.5+ and Internet Explorer 6.0+.</p>
<h3><a title="rgraph" rel="nofollow" href="http://www.rgraph.net/" target="_blank">RGraph</a></h3>
<p><a rel="nofollow" href="http://www.rgraph.net/"><img class="alignnone size-full wp-image-13011" title="rGraph" src="http://blogfreakz.com/wp-content/uploads/2010/11/rGraph.jpg" alt="rGraph 25+ Powerful Javascript Chart Libraries " width="600" height="231" /></a></p>
<p><strong>RGraph</strong> is a HTML5 canvas graph library. It uses features  that became available in HTML5 (specifically, the CANVAS tag)             to produce a wide variety of graph types: bar chart,  bi-polar chart (also known as an age frequency chart), donut chart,             funnel chart, gantt chart, horizontal bar chart, LED  display, line graph, meter, odometer, pie chart, progress bar, rose  chart,             scatter graph and traditional radar chart.</p>
<h3><a title="jqPlot" rel="nofollow" href="http://www.jqplot.com/" target="_blank">jqPlot</a></h3>
<p><a rel="nofollow" href="http://www.jqplot.com/"><img class="alignnone size-full wp-image-13012" title="jqplot" src="http://blogfreakz.com/wp-content/uploads/2010/11/jqplot.jpg" alt="jqplot 25+ Powerful Javascript Chart Libraries " width="600" height="321" /></a></p>
<p><strong>jqPlot</strong> is a plotting and charting plugin for the jQuery Javascript framework. jqPlot produces beautiful line, bar and pie charts with many features:</p>
<ul>
<li> Numerous chart style options.</li>
<li>Date axes with customizable formatting.</li>
<li>Up to 9 Y axes.</li>
<li>Rotated axis text.</li>
<li>Automatic trend line computation.</li>
<li>Tooltips and data point highlighting.</li>
<li>Sensible defaults for ease of use.</li>
</ul>
<h3><a title="bluff" rel="nofollow" href="http://bluff.jcoglan.com/" target="_blank">Bluff</a></h3>
<p><a rel="nofollow" href="http://bluff.jcoglan.com/"><img class="alignnone size-full wp-image-13014" title="bluff" src="http://blogfreakz.com/wp-content/uploads/2010/11/bluff.jpg" alt="bluff 25+ Powerful Javascript Chart Libraries " width="600" height="247" /></a></p>
<p><strong>Bluff</strong> is a JavaScript port of the <a rel="nofollow" href="http://nubyonrails.com/pages/gruff">Gruff graphing library</a> for Ruby. It is designed to support all the features of Gruff with minimal dependencies; the only         third-party scripts you need to run it are a copy of <a rel="nofollow" href="http://jsclass.jcoglan.com/">JS.Class</a> (2.6kB gzipped) and a copy of Google’s ExCanvas to support <code>canvas</code> in Internet Explorer.         Both these scripts are supplied with the Bluff download. Bluff itself is around 11kB gzipped.</p>
<h3><a title="flotr" rel="nofollow" href="http://solutoire.com/flotr/" target="_blank">Flotr</a></h3>
<p><a rel="nofollow" href="http://www.solutoire.com/experiments/flotr/examples/basic-legend.html"><img class="alignnone size-full wp-image-13019" title="flotr" src="http://blogfreakz.com/wp-content/uploads/2010/11/flotr.jpg" alt="flotr 25+ Powerful Javascript Chart Libraries " width="600" height="320" /></a></p>
<p>Flotr is a javascript plotting library based on the <a rel="nofollow" href="http://prototypejs.org/">Prototype Javascript Framework</a> and inspired by <a title="Flot Google Project Page" rel="nofollow" href="http://code.google.com/p/flot/">Flot</a> (written by Ole Laursen). 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>
<h3><a title="JS Charts" rel="nofollow" href="http://www.jscharts.com/" target="_blank">JS Charts</a></h3>
<p><a rel="nofollow" href="http://www.jscharts.com/examples"><img class="alignnone size-full wp-image-13022" title="jschart" src="http://blogfreakz.com/wp-content/uploads/2010/11/jschart.jpg" alt="jschart 25+ Powerful Javascript Chart Libraries " width="600" height="302" /></a></p>
<p><strong>JS Charts</strong> is a JavaScript chart generator that requires little or no  coding. JS Charts allows you to easily create charts in different  templates like <strong>bar charts</strong>, <strong>pie charts</strong> or simple  <strong>line graphs</strong>.   	Moreover, JS Charts is free for non-commercial use. For commercial use, get the full license for only $149.</p>
<h3><a title="jQuery Sparklines" rel="nofollow" href="http://omnipotent.net/jquery.sparkline/" target="_blank">jQuery Sparklines</a></h3>
<p><a rel="nofollow" href="http://omnipotent.net/jquery.sparkline/"><img class="alignnone size-full wp-image-13023" title="sparkline" src="http://blogfreakz.com/wp-content/uploads/2010/11/sparkline.jpg" alt="sparkline 25+ Powerful Javascript Chart Libraries " width="600" height="150" /></a></p>
<p>This jQuery plugin generates sparklines (small <strong>inline charts</strong>) directly     in the browser using data supplied either inline in the HTML, or via javascript. The plugin is compatible with most modern browsers and has been  tested with Firefox 2+, Safari 3+, Opera 9, Google Chrome and Internet  Explorer 6, 7 &amp; 8. The plugin was written by Gareth Watts for Splunk Inc and released under the New BSD License.</p>
<h3><a title="TufteGraph" rel="nofollow" href="http://xaviershay.github.com/tufte-graph/" target="_blank">TufteGraph</a></h3>
<p><a rel="nofollow" href="http://xaviershay.github.com/tufte-graph/"><img class="alignnone size-full wp-image-13024" title="TufteGraph" src="http://blogfreakz.com/wp-content/uploads/2010/11/TufteGraph.jpg" alt="TufteGraph 25+ Powerful Javascript Chart Libraries " width="600" height="266" /></a></p>
<p>TufteGraph is a JS library by which you can easily create graphs. All  the configuration is by dynamic functions, allowing for a really compact  API. Also, Non-core layout is done via CSS rather  than code. You can customize the style of graph by editing it’s CSS.</p>
<h3><strong><strong><a rel="nofollow" href="https://github.com/theiviaxx/MilkChart">MilkChart</a></strong></strong></h3>
<p><strong><strong><a rel="nofollow" href="https://github.com/theiviaxx/MilkChart"><img class="alignnone size-full wp-image-13025" title="milkchart" src="http://blogfreakz.com/wp-content/uploads/2010/11/milkchart.jpg" alt="milkchart 25+ Powerful Javascript Chart Libraries " width="600" height="294" /></a><br />
</strong></strong></p>
<p><strong>MilkChart</strong> is a simple to use, Graphing library for MooTools. This library will generate a graph similar to Microsoft Excel. To transform a table of data into a chart, simply create a MilkChart  object of the chart type you wish passing in the table id and an object  containing options for the chart.MilkChart  allows you to easily create charts in different  templates like <strong>Column Chart</strong>,<strong> Bar Chart</strong>, <strong>Line Chart</strong>, <strong> Scatter Chart</strong>, or <strong>Pie Chart</strong>.</p>
<h3><a title="PlotKit" rel="nofollow" href="http://www.liquidx.net/plotkit/" target="_blank">PlotKit</a></h3>
<p><a rel="nofollow" href="http://www.liquidx.net/plotkit/"><img class="alignnone size-full wp-image-13027" title="plotkit" src="http://blogfreakz.com/wp-content/uploads/2010/11/plotkit.jpg" alt="plotkit 25+ Powerful Javascript Chart Libraries " width="600" height="200" /></a></p>
<p><strong>PlotKit</strong> 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. PlotKit is <a rel="nofollow" href="http://media.liquidx.net/js/plotkit-doc/PlotKit.html">fully documented</a> and there is a <a rel="nofollow" href="http://media.liquidx.net/js/plotkit-doc/PlotKit.QuickStart.html">quick tutorial</a> to    get you started. PlotKit is a complete rewrite of CanvasGraph. It is better structured    and supported.</p>
<h3><a title="Scruffy" rel="nofollow" href="http://scruffy.rubyforge.org/" target="_blank">Scruffy</a></h3>
<p><a rel="nofollow" href="http://scruffy.rubyforge.org/"><img class="alignnone size-full wp-image-13028" title="scruffy" src="http://blogfreakz.com/wp-content/uploads/2010/11/scruffy.jpg" alt="scruffy 25+ Powerful Javascript Chart Libraries " width="600" height="186" /></a></p>
<p><strong>Scruffy</strong> is a <strong>Ruby library</strong> for generating attractive and powerful <strong>graphs</strong>,  useful for web applications, print media and many others. It’s highly  customizable and powerful. You can change the backgrounds, mix different  types of graph together, change the graphics used for the points,  change the line types, etc. You can also render to different types of  output.</p>
<h3><a title="Smoothie Charts " rel="nofollow" href="http://smoothiecharts.org/" target="_blank">Smoothie Charts </a></h3>
<p><a rel="nofollow" href="http://smoothiecharts.org/"><img class="alignnone size-full wp-image-13029" title="SmoothieCharts-" src="http://blogfreakz.com/wp-content/uploads/2010/11/SmoothieCharts-.jpg" alt="SmoothieCharts  25+ Powerful Javascript Chart Libraries " width="600" height="127" /></a></p>
<p><strong>Smoothie Charts</strong> is a really small charting library designed for <em>live streaming data</em> such as  real time streaming data pushed over a WebSocket. It only  works on Chrome and Safari. It doesn’t support legends Or  pie-charts.  In fact, it’s inferior in virtually every way to a library  like Flot.  But, it’s very good at displaying streaming data.</p>
<h3><a title="Gruff Graph " rel="nofollow" href="http://nubyonrails.com/pages/gruff" target="_blank">Gruff Graph </a></h3>
<p><a rel="nofollow" href="http://geoffreygrosenbach.com/projects/show/5"><img class="alignnone size-full wp-image-13032" title="gruffgraphs" src="http://blogfreakz.com/wp-content/uploads/2010/11/gruffgraphs.jpg" alt="gruffgraphs 25+ Powerful Javascript Chart Libraries " width="600" height="300" /></a></p>
<p><strong>Gruff Graph </strong> is a project to make beautiful  graphs with Ruby. It Can be used alone or  with Ruby on Rails. This library allow us to graph negative numbers  (line and bar), specify colors, and customize the graphs in other ways.</p>
<h3><a title="mooBarGraph" rel="nofollow" href="http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/" target="_blank">mooBarGraph</a></h3>
<p><a rel="nofollow" href="http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/"><img class="alignnone size-full wp-image-13059" title="moobargraph" src="http://blogfreakz.com/wp-content/uploads/2010/11/moobargraph.jpg" alt="moobargraph 25+ Powerful Javascript Chart Libraries " width="600" height="332" /></a></p>
<p><strong>mooBarGraph</strong> is AJAX graph plugin for MooTools which support two types of graphs, simple bar and stacked bar graph.  This plugin made graph from your JSON data and is compatible with all  major browsers including IE6.</p>
<h3><a title="jqBarGraph" rel="nofollow" href="http://workshop.rs/2009/12/jqbargraph-jquery-graph-plugin/" target="_blank">jqBarGraph</a></h3>
<p><a rel="nofollow" href="http://www.workshop.rs/jqbargraph/"><img class="alignnone size-full wp-image-13061" title="jqBarGraph" src="http://blogfreakz.com/wp-content/uploads/2010/11/jqBarGraph.jpg" alt="jqBarGraph 25+ Powerful Javascript Chart Libraries " width="600" height="364" /></a></p>
<p><strong>jqBarGraph</strong> is jQuery plugin that gives you freedom to easily display your data as graphs.  There are three types of graphs: simple, multi and stacked. All you have  to do is to pass your data to this plugin. This plugin is compatible  and fully tested with Safari 2+, Internet Explorer 6+, Firefox 2+,  Google Chrome 3+, Opera 9+.</p>
<h3><a title="Grafico" rel="nofollow" href="http://kilianvalkhof.com/2010/design/grafico-javascript-charting-library/" target="_blank">Grafico</a></h3>
<p><a rel="nofollow" href="http://kilianvalkhof.com/2010/design/grafico-javascript-charting-library/"><img class="alignnone size-full wp-image-13065" title="grafico" src="http://blogfreakz.com/wp-content/uploads/2010/11/grafico.jpg" alt="grafico 25+ Powerful Javascript Chart Libraries " width="600" height="166" /></a></p>
<p><strong>Grafico</strong> is a <strong>javascript charting library</strong> built with <strong>Raphaël</strong> and <strong>Prototype.js</strong>.  The library provides a wide array of graphs and stays with the  guidelines laid out by Stephen Few and Edward Tufte. Grafico provides  pretty charts that effectively communicate their information. Minified, Grafico is about 30kb and available under the MIT license.</p>
<h3><a title="moochart" rel="nofollow" href="http://moochart.coneri.se" target="_blank">moochart</a></h3>
<p><a rel="nofollow" href="http://moochart.coneri.se/#demo"><img class="alignnone size-full wp-image-13066" title="moochart" src="http://blogfreakz.com/wp-content/uploads/2010/11/moochart.jpg" alt="moochart 25+ Powerful Javascript Chart Libraries " width="600" height="350" /></a></p>
<p><strong>moochart</strong> is a plugin for MooTools 1.2 to create goog looking and customable <strong>bubble</strong><strong> diagrams on the canvas tag</strong>. The <strong>moochart  can be customized</strong> using a bunch of options or argument such as, width, height, bubbleSize, line color , bubble color, tooltips and more.</p>
<h3><a title="Dygraphs" rel="nofollow" href="http://www.danvk.org/dygraphs/" target="_blank">Dygraphs</a></h3>
<p><a rel="nofollow" href="http://www.danvk.org/dygraphs/"><img class="alignnone size-full wp-image-13071" title="dygraphs" src="http://blogfreakz.com/wp-content/uploads/2010/11/dygraphs.jpg" alt="dygraphs 25+ Powerful Javascript Chart Libraries " width="600" height="256" /></a></p>
<p><strong>Dygraphs</strong> is an open source JavaScript library that produces produces interactive, <strong>zoomable charts of time series</strong>. It is designed to <strong>display dense data sets</strong> and enable users to explore and interpret them. You can mouse over to  highlight individual values. Click and drag to zoom. Double-click to  zoom back out.</p>
<h3><a title="Canvas 3D Graph" rel="nofollow" href="http://dragan.yourtree.org/code/canvas-3d-graph/" target="_blank">Canvas 3D Graph</a></h3>
<p><a rel="nofollow" href="http://dragan.yourtree.org/code/canvas-3d-graph/"><img class="alignnone size-full wp-image-13073" title="canvas-3d-graph" src="http://blogfreakz.com/wp-content/uploads/2010/11/canvas-3d-graph.jpg" alt="canvas 3d graph 25+ Powerful Javascript Chart Libraries " width="600" height="370" /></a></p>
<p>Canvas 3D Graph is a special type of bar graph that plot numbers in 3D. This first started as <a rel="nofollow" href="http://devprotalk.com/showthread.php?t=1144">PHP-GD project</a>, but soon the creator realized that there is not much sense 		in generating complex graph like this on server side (script worked really fast, though)</p>
<h3><a title="protovis" rel="nofollow" href="http://vis.stanford.edu/protovis/" target="_blank">Protovis</a></h3>
<p><a rel="nofollow" href="http://vis.stanford.edu/protovis/"><img class="alignnone size-full wp-image-13077" title="protovis" src="http://blogfreakz.com/wp-content/uploads/2010/11/protovis.jpg" alt="protovis 25+ Powerful Javascript Chart Libraries " width="600" height="406" /></a></p>
<p><strong>Protovis</strong> composes custom views of data with simple marks such as bars and dots. Unlike low-level graphics libraries that         quickly become tedious for visualization, Protovis defines marks through         dynamic properties that encode data, allowing inheritance, scales and layouts to simplify construction.          Protovis is free and open-source, provided under         the BSD         License. It uses JavaScript         and SVG for web-native         visualizations.</p>
<h3><a title="ProtoChart" rel="nofollow" href="http://www.deensoft.com/lab/protochart/" target="_blank">ProtoChart</a></h3>
<p><a rel="nofollow" href="http://www.deensoft.com/lab/protochart/"><img class="alignnone size-full wp-image-13078" title="ProtoChart" src="http://blogfreakz.com/wp-content/uploads/2010/11/ProtoChart.jpg" alt="ProtoChart 25+ Powerful Javascript Chart Libraries " width="600" height="351" /></a></p>
<p><strong>ProtoChart</strong> is an opensource library using Prototype and Canvas to  create good looking charts. This library is highly motivated by Flot,  Flotr and PlotKit libraries.</p>
<h3><a title="MooWheel" rel="nofollow" href="http://labs.unwieldy.net/moowheel/" target="_blank">MooWheel</a></h3>
<p><a rel="nofollow" href="http://labs.unwieldy.net/moowheel/"><img class="alignnone size-full wp-image-13079" title="moowheel" src="http://blogfreakz.com/wp-content/uploads/2010/11/moowheel.jpg" alt="moowheel 25+ Powerful Javascript Chart Libraries " width="600" height="383" /></a></p>
<p>The purpose of this script is to provide a unique and elegant way to  visualize data using Javascript and the &lt;canvas&gt; object. This type  of visualization can be used to display connections between many  different objects, be them people, places, things, or otherwise. The  script is licensed under an MIT-style license.</p>
<h3><a title="processingjs" rel="nofollow" href="http://processingjs.org/" target="_blank">Processing.js</a></h3>
<p><a rel="nofollow" href="http://processingjs.org/"><img class="alignnone size-full wp-image-13080" title="processing" src="http://blogfreakz.com/wp-content/uploads/2010/11/processing.jpg" alt="processing 25+ Powerful Javascript Chart Libraries " width="600" height="174" /></a></p>
<p>Processing.js is the sister project of the popular <a rel="nofollow" href="http://processing.org/">Processing</a> visual programming language, designed for the web. Processing.js  makes your data visualizations, digital art, interactive animations,  educational graphs, video games, etc. work using web standards and  without any plug-ins. You write  code using the Processing language, include it in your web page, and  Processing.js does the rest. It&#8217;s not magic, but almost.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="javascript chart library">javascript chart library</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="javascript chart">javascript chart</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="javascript graph library">javascript graph library</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="jquery chart library">jquery chart library</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="js charts">js charts</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="radar chart jquery">radar chart jquery</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="javascript radar chart">javascript radar chart</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="jqbargraph horizontal">jqbargraph horizontal</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="chart library">chart library</a></li>
<li><a href="http://blogfreakz.com/javascript/javascript-chart-library/" title="javascript charting">javascript charting</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/javascript/javascript-chart-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smoothie Charts &#8211; Charting Library for Live Streaming Data</title>
		<link>http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/</link>
		<comments>http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 22:43:29 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[chart]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=8953</guid>
		<description><![CDATA[There’s tons of great JavaScript charting libraries out there. Too many to choose from. Although many of the charting libraries allow you to dynamically update data, none have really been optimized for a constant stream of data. Smoothie Charts is a really small charting library designed for live streaming data such as  real time streaming [...]]]></description>
			<content:encoded><![CDATA[<p>There’s tons of great JavaScript charting libraries out there. Too many to choose from. Although many of the charting libraries allow you to dynamically update  data, none have really been optimized for a constant stream of data.</p>
<p><span id="more-8953"></span><strong></strong></p>
<p><a rel="nofollow" href="http://smoothiecharts.org/"><img class="aligncenter size-full wp-image-8954" title="smoothychart" src="http://blogfreakz.com/wp-content/uploads/2010/08/smoothychart.jpg" alt="smoothychart Smoothie Charts   Charting Library for Live Streaming Data" width="600" height="320" /></a></p>
<p><strong>Smoothie Charts</strong> is a really small charting library designed for <em>live streaming data</em> such as  real time streaming data pushed over a WebSocket. It only works on Chrome and Safari. It doesn’t support legends Or  pie-charts. In fact, it’s inferior in virtually every way to a library  like Flot. But, it’s very good at displaying streaming data.</p>
<p class="download">
<strong>Requirements</strong>: -<br />
<strong>Demo</strong>: <a rel="nofollow" title="smoothychart" href="http://smoothiecharts.org/" target="_blank">http://smoothiecharts.org/</a><br />
<strong>License</strong>: MIT License
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="javascript live chart">javascript live chart</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="smoothie graphs">smoothie graphs</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="smoothie graph">smoothie graph</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="javascript live charts">javascript live charts</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="stream graph javascript">stream graph javascript</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="smoothie charts">smoothie charts</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="javascript streaming charts">javascript streaming charts</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="streaming chart javascript">streaming chart javascript</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="streaming charts javascript">streaming charts javascript</a></li>
<li><a href="http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/" title="javascript live graph">javascript live graph</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/javascript/smoothie-charts-charting-library-for-live-streaming-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RGraph -HTML5 canvas graph library</title>
		<link>http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/</link>
		<comments>http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 16:15:15 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[graph]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=3995</guid>
		<description><![CDATA[RGraph is a HTML5 canvas graph library. It uses features that became available in HTML5 (specifically, the CANVAS tag) to produce a wide variety of graph types: bar chart, bi-polar chart (also known as an age frequency chart), donut chart, funnel chart, gantt chart, horizontal bar chart, LED display, line graph, meter, odometer, pie chart, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>RGraph</strong> is a <strong>HTML5 canvas graph library</strong>. It uses features that became available in HTML5 (specifically, the CANVAS tag) to produce a wide variety of graph types: <strong>bar chart</strong>,<strong> bi-polar chart</strong> (also known as an age frequency chart), <strong>donut chart</strong>,<strong> funnel chart</strong>, <strong>gantt chart</strong>, <strong>horizontal bar chart</strong>, <strong>LED display</strong>, <strong>line graph</strong>, <strong>meter</strong>, <strong>odometer</strong>,<strong> pie chart</strong>, <strong>progress bar</strong>, <strong>pseudo radar chart</strong>, <strong>scatter graph</strong> and traditional <strong>radar chart</strong>.</p>
<p><span id="more-3995"></span><img class="alignnone size-full wp-image-4004" title="rgraph" src="http://blogfreakz.com/wp-content/uploads/2010/03/rgraph.png" alt="rgraph RGraph  HTML5 canvas graph library " width="481" height="452" /></p>
<p>This library uses HTML5 features which are                 implemented in recent browsers. As such you will need to be using one of these latest browsers:                 Firefox 3.5+,                 Chrome 2+,                 Safari 4+,                 Opera 10.5+ or                 Internet Explorer 8.                                  <strong></strong><br />
Older versions of <a rel="nofollow" href="http://www.opera.com/" target="_blank">Opera</a> and other older browsers are supported in a limited fashion.                 If they don&#8217;t support text or shadows these will naturally be unavailable.By now, only beta version available for download.</p>
<p class="download"><strong>Requirements</strong>: Firefox 3.5+, Chrome 2+, Safari 4+, Opera 10.5+ or Internet Explorer 8<br />
<strong>Demo</strong>: <a rel="nofollow" href="http://www.rgraph.net/" target="_blank">http://www.rgraph.net</a><br />
<strong>License</strong>: Free for non commercial use
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="html5 canvas timeline">html5 canvas timeline</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="html5 canvas graph">html5 canvas graph</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="rgraph">rgraph</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="html5 graph">html5 graph</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="ajax graph library">ajax graph library</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="HTML5 charts">HTML5 charts</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="type of chart and graph">type of chart and graph</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="canvas graph">canvas graph</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="html5 charting">html5 charting</a></li>
<li><a href="http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/" title="graph library">graph library</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/charts/rgraph-html5-canvas-graph-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scruffy &#8211; Beautiful Graphs for Ruby</title>
		<link>http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/</link>
		<comments>http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 15:10:18 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[graph]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=3970</guid>
		<description><![CDATA[Scruffy is a Ruby library for generating attractive and powerful graphs, useful for web applications, print media and many others. It&#8217;s highly customizable and powerful. You can change the backgrounds, mix different types of graph together, change the graphics used for the points, change the line types, etc. You can also render to different types [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Scruffy</strong> is a <strong>Ruby library</strong> for generating attractive and powerful <strong>graphs</strong>, useful for web applications, print media and many others. It&#8217;s highly customizable and powerful. You can change the backgrounds, mix different types of graph together, change the graphics used for the points, change the line types, etc. You can also render to different types of output.</p>
<p><span id="more-3970"></span><img class="alignnone size-full wp-image-3971" title="scruffy" src="http://blogfreakz.com/wp-content/uploads/2010/03/scruffy.jpg" alt="scruffy Scruffy   Beautiful Graphs for Ruby" width="304" height="186" /></p>
<p>With this library you can draw many type of graph on ruby such as <strong>Pie Chart</strong>, <strong>Line Graph</strong>, <strong>Bar Graph</strong>, <strong>Split Graph</strong>, <strong>Stacking Graph</strong> and<strong> Multi-viewport Multi-layered</strong> graph.</p>
<p class="download">
<strong>Demo</strong>: <a href="http://www.ibrasten.com/articles/tag/scruffy" target="_blank">http://www.ibrasten.com/articles/tag/scruffy</a><br />
<strong>Website</strong>: <a href="http://scruffy.rubyforge.org/" target="_blank">http://scruffy.rubyforge.org/</a><br />
<strong>License</strong>: <span>MIT</span> license
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="ruby scruffy">ruby scruffy</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="scruffy ruby">scruffy ruby</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="scruffy charts">scruffy charts</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="different types of graphs">different types of graphs</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="ruby graph">ruby graph</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="beautiful line graph">beautiful line graph</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="types of graphs">types of graphs</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="different types graphs">different types graphs</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="different kinds of graphs">different kinds of graphs</a></li>
<li><a href="http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/" title="line graph with article">line graph with article</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/ruby/scruffy-beautiful-graphs-for-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gruff Graphs &#8211; making beautiful graphs with Ruby</title>
		<link>http://blogfreakz.com/ruby/graphs-with-ruby/</link>
		<comments>http://blogfreakz.com/ruby/graphs-with-ruby/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 07:04:08 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[graph]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=3753</guid>
		<description><![CDATA[The Gruff Graphing Library is a project to make beautiful graphs with Ruby created by Geoffrey Grosenbach. It Can be used alone or with Ruby on Rails. This library allow us to graph negative numbers (line and bar), specify colors, and customize the graphs in other ways. Demo: http://geoffreygrosenbach.com/projects/show/5 Website: http://nubyonrails.com/pages/gruff License: MIT License Incoming [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>Gruff Graphing Library</strong> is a project to make beautiful graphs with Ruby created by Geoffrey Grosenbach. It Can be used alone or with Ruby on Rails. This library allow us to graph negative numbers (line and bar), specify colors, and customize the graphs in other ways.</p>
<p><span id="more-3753"></span></p>
<p><img class="alignnone size-full wp-image-3754" title="Gruff-Graph" src="http://blogfreakz.com/wp-content/uploads/2010/02/Gruff-Graph.png" alt="Gruff Graph Gruff Graphs   making beautiful graphs with Ruby" width="400" height="300" /></p>
<p class="download"><strong>Demo</strong>: <a rel="nofollow" href="http://geoffreygrosenbach.com/projects/show/5" target="_blank">http://geoffreygrosenbach.com/projects/show/5</a><br />
<strong>Website</strong>: <a rel="nofollow" href="http://nubyonrails.com/pages/gruff" target="_blank">http://nubyonrails.com/pages/gruff</a><br />
<strong>License</strong>: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="ruby gruff">ruby gruff</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="gruff ruby">gruff ruby</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="gruff graphs">gruff graphs</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="beautiful graphs">beautiful graphs</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="gruff tutorial">gruff tutorial</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="ruby gruff tutorial">ruby gruff tutorial</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="gruff graph">gruff graph</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="gruff rails">gruff rails</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="gruff rails 3">gruff rails 3</a></li>
<li><a href="http://blogfreakz.com/ruby/graphs-with-ruby/" title="beautiful graph">beautiful graph</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/ruby/graphs-with-ruby/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>mooBarGraph &#8211; AJAX graph for MooTools</title>
		<link>http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/</link>
		<comments>http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 14:49:14 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Charts/Graph]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[chart]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=3699</guid>
		<description><![CDATA[mooBarGraph is AJAX graph plugin for MooTools which support two types of graphs, simple bar and stacked bar graph. This plugin made graph from your JSON data and is compatible with all major browsers including IE6. This is jqBarGraph on steroids. It have almost all jqBarGraph possibility, plus some new features, like url bars, info [...]]]></description>
			<content:encoded><![CDATA[<p><strong>mooBarGraph</strong> is <strong>AJAX graph</strong> plugin for <strong><a rel="nofollow" href="http://mootools.net/">MooTools</a></strong> which support two types of graphs, simple bar and stacked bar graph. This plugin made graph from your JSON data and is compatible with all major browsers including IE6. This is <a href="http://http://blogfreakz.com/jquery/jqbargraph-display-data-as-graphs/" target="_self">jqBarGraph</a> on steroids. It have almost all jqBarGraph possibility, plus some new features, like url bars, info boxes, negative values, AJAX data loading.</p>
<p><span id="more-3699"></span><img class="alignnone size-large wp-image-3706" title="mooBar" src="http://blogfreakz.com/wp-content/uploads/2010/02/mooBar-600x236.jpg" alt="mooBar 600x236 mooBarGraph   AJAX graph for MooTools" width="600" height="236" /></p>
<h5><strong>Features</strong></h5>
<ul>
<li>You can set label, color, url and tooltip text for every bar</li>
<li>Bars can be simple or stacked</li>
<li>Legend can be created automatically</li>
<li>Data can be loaded with AJAX and can have negative values for simple type</li>
<li>Compatible with all major browsers including IE</li>
</ul>
<p class="download"><strong>Requirements</strong>: MooTools framework<strong></strong><br />
<strong>Demo</strong>: <a href="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/exrh3v.jpg?rand=vw3KTS3p70wl" target="_blank">http://workshop.rs/projects/moobargraph</a><br />
<strong>Website</strong>: <a rel="nofollow" href="http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/" target="_blank">http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/</a><br />
<strong>License</strong>: GPL License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="mootools chart">mootools chart</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="mootools charts">mootools charts</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="mootools graph">mootools graph</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="mootools graphs">mootools graphs</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="chart mootools">chart mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="Ajax Graph">Ajax Graph</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="mootools charts graphs">mootools charts graphs</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="charts mootools">charts mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="mootools bar graph">mootools bar graph</a></li>
<li><a href="http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/" title="moobar mootools">moobar mootools</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/moobargraph-ajax-graph-for-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

