<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Visualizing Data with Flot</title>
	<atom:link href="http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/feed/" rel="self" type="application/rss+xml" />
	<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/</link>
	<description>Web Development &#38; Design Tutorials</description>
	<lastBuildDate>Sat, 21 Nov 2009 18:53:09 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jeremie</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-79897</link>
		<dc:creator>Jeremie</dc:creator>
		<pubDate>Tue, 14 Jul 2009 00:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-79897</guid>
		<description>Hi, great article. I found this tutorial useful too:
http://www.eremiya.net/
If it could help…</description>
		<content:encoded><![CDATA[<p>Hi, great article. I found this tutorial useful too:<br />
<a href="http://www.eremiya.net/" rel="nofollow">http://www.eremiya.net/</a><br />
If it could help…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: diego</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-71448</link>
		<dc:creator>diego</dc:creator>
		<pubDate>Sat, 13 Jun 2009 08:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-71448</guid>
		<description>hii
can flot plot live streaming charts like stock charts without completely reloading itself.please do help me with the code i am new to flot. thankyou</description>
		<content:encoded><![CDATA[<p>hii<br />
can flot plot live streaming charts like stock charts without completely reloading itself.please do help me with the code i am new to flot. thankyou</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajan</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-71327</link>
		<dc:creator>rajan</dc:creator>
		<pubDate>Fri, 12 Jun 2009 18:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-71327</guid>
		<description>Great man...i tried so many other javascript framework,,,but flot is so simple and useful,...thanks for tutorial</description>
		<content:encoded><![CDATA[<p>Great man&#8230;i tried so many other javascript framework,,,but flot is so simple and useful,&#8230;thanks for tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wpdigger</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-69271</link>
		<dc:creator>wpdigger</dc:creator>
		<pubDate>Wed, 03 Jun 2009 11:16:53 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-69271</guid>
		<description>Nice tuts ! I think in the growing world of web application.
Thanks for showing us how to use it :)</description>
		<content:encoded><![CDATA[<p>Nice tuts ! I think in the growing world of web application.<br />
Thanks for showing us how to use it <img src='http://net.tutsplus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-34691</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 09 Feb 2009 02:49:31 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-34691</guid>
		<description>I made an interesting piece of code.

	var myways = [];
	var mydata = [];
	$(&quot;#src&quot;).find(&quot;th[scope=&#039;col&#039;]&quot;).each(function(){
		myways.push($(this).html());
	});
	$(&quot;#src tr&quot;).each(function(){
		var thiszone;
		var zone = $(this).find(&quot;th[scope=&#039;row&#039;]&quot;).html();
		var zonex = [];
		$(this).find(&quot;td&quot;).each(function(){
			var aval = parseInt($(this).html());
			zonex.push(aval);
		});
		if(zone != null){
			var zonedata = [];
			for(var i=0;i&lt;myways.length;i++){
				zonedata.push([myways[i], zonex[i]]);
			}			
			thiszone = {label: zone, data: zonedata};
			mydata.push(thiszone);
		}
	});


Now, you don&#039;t have to write all data stuff, just do the table, assign an ID and you will see the results! In order to make this thing work, you need to have numbers without commas or dots. And add the class row to labels and class col to data labels. Enjoy!</description>
		<content:encoded><![CDATA[<p>I made an interesting piece of code.</p>
<p>	var myways = [];<br />
	var mydata = [];<br />
	$(&#8221;#src&#8221;).find(&#8221;th[scope='col']&#8220;).each(function(){<br />
		myways.push($(this).html());<br />
	});<br />
	$(&#8221;#src tr&#8221;).each(function(){<br />
		var thiszone;<br />
		var zone = $(this).find(&#8221;th[scope='row']&#8220;).html();<br />
		var zonex = [];<br />
		$(this).find(&#8221;td&#8221;).each(function(){<br />
			var aval = parseInt($(this).html());<br />
			zonex.push(aval);<br />
		});<br />
		if(zone != null){<br />
			var zonedata = [];<br />
			for(var i=0;i&lt;myways.length;i++){<br />
				zonedata.push([myways[i], zonex[i]]);<br />
			}<br />
			thiszone = {label: zone, data: zonedata};<br />
			mydata.push(thiszone);<br />
		}<br />
	});</p>
<p>Now, you don&#8217;t have to write all data stuff, just do the table, assign an ID and you will see the results! In order to make this thing work, you need to have numbers without commas or dots. And add the class row to labels and class col to data labels. Enjoy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MarcusT</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-33273</link>
		<dc:creator>MarcusT</dc:creator>
		<pubDate>Tue, 03 Feb 2009 16:05:04 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-33273</guid>
		<description>I like the article, but I don&#039;t like the way it duplicates the data within the table AND JavaScript - this is completely unnecessary! Instead, the code should have read the data from the table and displayed it as a graph - in fact, it would make sense to encapsulate the functionality into a reusable plugin which could be applied to any data table, while accepting configuration parameters of course. Perhaps this article could be revised or revisited in a new article to show how this could be done? I know how, but it would be a useful tutorial for many.</description>
		<content:encoded><![CDATA[<p>I like the article, but I don&#8217;t like the way it duplicates the data within the table AND JavaScript &#8211; this is completely unnecessary! Instead, the code should have read the data from the table and displayed it as a graph &#8211; in fact, it would make sense to encapsulate the functionality into a reusable plugin which could be applied to any data table, while accepting configuration parameters of course. Perhaps this article could be revised or revisited in a new article to show how this could be done? I know how, but it would be a useful tutorial for many.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spike</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-32723</link>
		<dc:creator>Spike</dc:creator>
		<pubDate>Sat, 31 Jan 2009 20:56:06 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-32723</guid>
		<description>Great article!  One question... is there a way to save the graph as a PNG?  When I try to view the image all i see is a blank &quot;canvas&quot; image.

Thanks!</description>
		<content:encoded><![CDATA[<p>Great article!  One question&#8230; is there a way to save the graph as a PNG?  When I try to view the image all i see is a blank &#8220;canvas&#8221; image.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mehran Khajavi(sinoohe)</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-31179</link>
		<dc:creator>Mehran Khajavi(sinoohe)</dc:creator>
		<pubDate>Sat, 24 Jan 2009 11:10:50 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-31179</guid>
		<description>It&#039;s so great and powerful
thanks again :D</description>
		<content:encoded><![CDATA[<p>It&#8217;s so great and powerful<br />
thanks again <img src='http://net.tutsplus.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bugsy</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-30886</link>
		<dc:creator>Bugsy</dc:creator>
		<pubDate>Thu, 22 Jan 2009 17:27:24 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-30886</guid>
		<description>Installed FLOT over the last couple days. AMAZING!  

I see that Siubie asked about how to add data from php....

I have an SQL query that draws the data and insrts it into the data tag using repeat around [x1, y2], through all of the records.  And boom live updated data.

I made a few charts so far based of my Daily Fruit blog...

http://www.fruuit.com/graphs/one/</description>
		<content:encoded><![CDATA[<p>Installed FLOT over the last couple days. AMAZING!  </p>
<p>I see that Siubie asked about how to add data from php&#8230;.</p>
<p>I have an SQL query that draws the data and insrts it into the data tag using repeat around [x1, y2], through all of the records.  And boom live updated data.</p>
<p>I made a few charts so far based of my Daily Fruit blog&#8230;</p>
<p><a href="http://www.fruuit.com/graphs/one/" rel="nofollow">http://www.fruuit.com/graphs/one/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: siubie</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/visualizing-data-with-flot/#comment-24074</link>
		<dc:creator>siubie</dc:creator>
		<pubDate>Sat, 20 Dec 2008 06:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1244#comment-24074</guid>
		<description>flot weakpoint is the graph cannot be printed CMIIW

but how to dynamically add data from php to flot ?</description>
		<content:encoded><![CDATA[<p>flot weakpoint is the graph cannot be printed CMIIW</p>
<p>but how to dynamically add data from php to flot ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 2/7 queries in 0.007 seconds using memcached
Content Delivery Network via 

Served from: psdtutsplus.com @ 2009-11-21 11:16:36 -->