<?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: GD Library Bar Chart</title>
	<atom:link href="http://www.bolducpress.com/tutorials/gd-library-bar-chart/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/</link>
	<description>BolducPress is the blog of Joshua Bolduc, founder of the company - Part Digital Design</description>
	<lastBuildDate>Wed, 01 Sep 2010 14:02:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anthony</title>
		<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/comment-page-1/#comment-7988</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Thu, 12 Aug 2010 14:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.bolducpress.com/?p=195#comment-7988</guid>
		<description>Do you have a tutorial on how to graph data from a database?</description>
		<content:encoded><![CDATA[<p>Do you have a tutorial on how to graph data from a database?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Cronk</title>
		<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/comment-page-1/#comment-294</link>
		<dc:creator>Scott Cronk</dc:creator>
		<pubDate>Thu, 09 Apr 2009 04:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.bolducpress.com/?p=195#comment-294</guid>
		<description>I have data sets with negative values and positive values and your tutorial code only seems to work for positive values.. negatives are drawn below and outside the canvas.  I am planning to decipher your code to develop a fix ... but perhaps you have a quick and easy fix I could use???</description>
		<content:encoded><![CDATA[<p>I have data sets with negative values and positive values and your tutorial code only seems to work for positive values.. negatives are drawn below and outside the canvas.  I am planning to decipher your code to develop a fix &#8230; but perhaps you have a quick and easy fix I could use???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Black</title>
		<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/comment-page-1/#comment-273</link>
		<dc:creator>Michael Black</dc:creator>
		<pubDate>Wed, 18 Feb 2009 23:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.bolducpress.com/?p=195#comment-273</guid>
		<description>Great tutorial, it works wonderfully!  Thank you very much!</description>
		<content:encoded><![CDATA[<p>Great tutorial, it works wonderfully!  Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yogendra kaushik</title>
		<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/comment-page-1/#comment-260</link>
		<dc:creator>yogendra kaushik</dc:creator>
		<pubDate>Thu, 15 Jan 2009 06:58:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.bolducpress.com/?p=195#comment-260</guid>
		<description>Its Really very Good tutorial, Thanks for such a good resource</description>
		<content:encoded><![CDATA[<p>Its Really very Good tutorial, Thanks for such a good resource</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fg</title>
		<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/comment-page-1/#comment-232</link>
		<dc:creator>fg</dc:creator>
		<pubDate>Fri, 07 Nov 2008 13:01:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.bolducpress.com/?p=195#comment-232</guid>
		<description>df</description>
		<content:encoded><![CDATA[<p>df</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sean</title>
		<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/comment-page-1/#comment-153</link>
		<dc:creator>sean</dc:creator>
		<pubDate>Wed, 12 Dec 2007 21:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.bolducpress.com/?p=195#comment-153</guid>
		<description>Very good tutorial but i had to remove the following code to display this table correctly: $xPos = $c4[&#039;x&#039;] $increment $verticalPadding-($wordWidth/2); ImageString($canvas, 2, $xPos, $c4[&#039;y&#039;], $assoc, $black); $increment  = $sqW;*/</description>
		<content:encoded><![CDATA[<p>Very good tutorial but i had to remove the following code to display this table correctly: $xPos = $c4['x'] $increment $verticalPadding-($wordWidth/2); ImageString($canvas, 2, $xPos, $c4['y'], $assoc, $black); $increment  = $sqW;*/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luca</title>
		<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/comment-page-1/#comment-67</link>
		<dc:creator>Luca</dc:creator>
		<pubDate>Mon, 23 Jul 2007 15:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.bolducpress.com/?p=195#comment-67</guid>
		<description>Hi there,very good tutorial, thank you for sharing.Though, I have no idea why but I had to correct this line of the code:imagefilledrectangle($canvas, $xPos, $c4[&#039;y&#039;], $xPos $barWidth, $yPos, $blue);with this one:imagefilledrectangle($canvas, $xPos, $yPos, $xPos $barWidth, $c4[&#039;y&#039;], $blue);in order to make the whole tutorial run.Thanks alot again,Luca</description>
		<content:encoded><![CDATA[<p>Hi there,very good tutorial, thank you for sharing.Though, I have no idea why but I had to correct this line of the code:imagefilledrectangle($canvas, $xPos, $c4['y'], $xPos $barWidth, $yPos, $blue);with this one:imagefilledrectangle($canvas, $xPos, $yPos, $xPos $barWidth, $c4['y'], $blue);in order to make the whole tutorial run.Thanks alot again,Luca</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kasnap</title>
		<link>http://www.bolducpress.com/tutorials/gd-library-bar-chart/comment-page-1/#comment-31</link>
		<dc:creator>kasnap</dc:creator>
		<pubDate>Mon, 25 Jun 2007 04:58:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.bolducpress.com/?p=195#comment-31</guid>
		<description>Thanks a lot for this valuable tutorial</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this valuable tutorial</p>
]]></content:encoded>
	</item>
</channel>
</rss>
