<?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: mooBarGraph: AJAX graph for MooTools</title>
	<atom:link href="http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/feed/" rel="self" type="application/rss+xml" />
	<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/</link>
	<description>owned by Ivan Lazarevic</description>
	<lastBuildDate>Wed, 16 May 2012 15:48:50 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: flykobe</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-17296</link>
		<dc:creator>flykobe</dc:creator>
		<pubDate>Sat, 09 Apr 2011 06:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-17296</guid>
		<description>I think the bug of &quot;negative&quot; when difference between lowest and highest value is big 
can be solved by this way:

now, the barHeight is:
barHeight       = (barValue == 0) ? &#039;0&#039; : (this.options.height*Math.abs(barValue))/barMax;
  
but, barValueHolder may use 18px, and barLabelHolder too. 
so I add:
 if (barHeight &lt; valAndLabelHeight){
     barHeight = valAndLabelHeight + 1; // just 1px
 }</description>
		<content:encoded><![CDATA[<p>I think the bug of &#8220;negative&#8221; when difference between lowest and highest value is big<br />
can be solved by this way:</p>
<p>now, the barHeight is:<br />
barHeight       = (barValue == 0) ? &#8216;0&#8242; : (this.options.height*Math.abs(barValue))/barMax;</p>
<p>but, barValueHolder may use 18px, and barLabelHolder too.<br />
so I add:<br />
 if (barHeight &lt; valAndLabelHeight){<br />
     barHeight = valAndLabelHeight + 1; // just 1px<br />
 }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Comment tracer de beaux graphiques sur votre site ?? &#171; farkess.com</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1925</link>
		<dc:creator>Comment tracer de beaux graphiques sur votre site ?? &#171; farkess.com</dc:creator>
		<pubDate>Sun, 18 Jul 2010 07:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1925</guid>
		<description>[...] Documentation [...]</description>
		<content:encoded><![CDATA[<p>[...] Documentation [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1915</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sat, 17 Jul 2010 15:59:35 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1915</guid>
		<description>Really cool script - the best I could find for mootools.
Thank you &amp; Justin for the fix!
Keep it up
Cheers</description>
		<content:encoded><![CDATA[<p>Really cool script &#8211; the best I could find for mootools.<br />
Thank you &amp; Justin for the fix!<br />
Keep it up<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1802</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Fri, 09 Jul 2010 21:23:32 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1802</guid>
		<description>I made a quick fix for the bar difference issue. This only seems to work if all of your values are positive.

Add this code to line 241 in the uncompressed file:

var barBodyHolderHeight = parseInt(barBodyHolder.getStyle(&#039;height&#039;));
if(isNaN(barBodyHolderHeight)) barBodyHolderHeight = 0;
barHolder.setStyles({
	height: lblvalHeight + barBodyHolderHeight,
	display: &#039;block&#039;
});</description>
		<content:encoded><![CDATA[<p>I made a quick fix for the bar difference issue. This only seems to work if all of your values are positive.</p>
<p>Add this code to line 241 in the uncompressed file:</p>
<p>var barBodyHolderHeight = parseInt(barBodyHolder.getStyle(&#8217;height&#8217;));<br />
if(isNaN(barBodyHolderHeight)) barBodyHolderHeight = 0;<br />
barHolder.setStyles({<br />
	height: lblvalHeight + barBodyHolderHeight,<br />
	display: &#8216;block&#8217;<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claus Mandal</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1566</link>
		<dc:creator>Claus Mandal</dc:creator>
		<pubDate>Sun, 20 Jun 2010 01:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1566</guid>
		<description>This is an awesome script Lazarevic, and I&#039;m pretty sure that if you use a little time to fix the &quot;negative&quot; bug, you&#039;ll get the status of hero in some circles - yes it&#039;s probably gonna be in the nerdy circles, but a hero you&#039;ll be ;)

Thank you for your work, now I&#039;ll have to attend other things within my reach. I&#039;ll be checking this page out in the future for updates.

Greetings from Denmark.</description>
		<content:encoded><![CDATA[<p>This is an awesome script Lazarevic, and I&#8217;m pretty sure that if you use a little time to fix the &#8220;negative&#8221; bug, you&#8217;ll get the status of hero in some circles &#8211; yes it&#8217;s probably gonna be in the nerdy circles, but a hero you&#8217;ll be <img src='http://workshop.rs/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Thank you for your work, now I&#8217;ll have to attend other things within my reach. I&#8217;ll be checking this page out in the future for updates.</p>
<p>Greetings from Denmark.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jetscram</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1546</link>
		<dc:creator>Jetscram</dc:creator>
		<pubDate>Thu, 17 Jun 2010 00:48:42 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1546</guid>
		<description>Thanks for this great plugin!

Much easier than most graphing scripts/plugins. The json ajax loading is great!!! 

Hats Off!</description>
		<content:encoded><![CDATA[<p>Thanks for this great plugin!</p>
<p>Much easier than most graphing scripts/plugins. The json ajax loading is great!!! </p>
<p>Hats Off!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Criss</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1435</link>
		<dc:creator>Criss</dc:creator>
		<pubDate>Wed, 09 Jun 2010 06:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1435</guid>
		<description>Hi, thanks for the great work, unfortunately I&#039;m having the same &quot;negative&quot; value effect on most of my graphs which for me makes the plugin useless (for now). Hope you can have the time to look at this considering how far you&#039;ve gone already!.

Cheers!</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the great work, unfortunately I&#8217;m having the same &#8220;negative&#8221; value effect on most of my graphs which for me makes the plugin useless (for now). Hope you can have the time to look at this considering how far you&#8217;ve gone already!.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lazarevic Ivan</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1353</link>
		<dc:creator>Lazarevic Ivan</dc:creator>
		<pubDate>Tue, 01 Jun 2010 23:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1353</guid>
		<description>It&#039;s not a matter of luck, it&#039;s just a matter of free time : )</description>
		<content:encoded><![CDATA[<p>It&#8217;s not a matter of luck, it&#8217;s just a matter of free time : )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: netpork</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1348</link>
		<dc:creator>netpork</dc:creator>
		<pubDate>Tue, 01 Jun 2010 15:58:10 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1348</guid>
		<description>Any luck with that first bar difference issue?</description>
		<content:encoded><![CDATA[<p>Any luck with that first bar difference issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mooBarGraph开源项目 - Ajax代码大全 - Java开源项目 - 图表Charts - ajax图表Charts制作 - Java免费软件 - mooBarGraph - 开源网</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1291</link>
		<dc:creator>mooBarGraph开源项目 - Ajax代码大全 - Java开源项目 - 图表Charts - ajax图表Charts制作 - Java免费软件 - mooBarGraph - 开源网</dc:creator>
		<pubDate>Fri, 28 May 2010 02:19:29 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1291</guid>
		<description>[...] mooBarGraph项目主页 &#124; mooBarGraph项目下载 &#124; mooBarGraph中文支持 [...]</description>
		<content:encoded><![CDATA[<p>[...] mooBarGraph项目主页 | mooBarGraph项目下载 | mooBarGraph中文支持 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rozhkov Ivan (Рожков Иван)</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-1192</link>
		<dc:creator>Rozhkov Ivan (Рожков Иван)</dc:creator>
		<pubDate>Tue, 18 May 2010 16:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-1192</guid>
		<description>Hi, i&#039;m mootools dev, my project - &quot;SegmentBox&quot; tablegrid.
Some demos: (25-30 % from full functional)
- segmentbox.com/demo/more/admin.html
- segmentbox.com/demo/sklif/admin.html

I want to make &quot;SegmentBox&quot; work together with MOOBARGRAPH.
To build GRAPH from data of segmentbox tablegrid

So segmentbox tablegrid use csv structure...
&quot;3&#124;true&#124;name&#124;2,1,3&#124;1000&#124;2000&#124;2010-11-21&quot;

If you have free time, mail me...</description>
		<content:encoded><![CDATA[<p>Hi, i&#8217;m mootools dev, my project &#8211; &#8220;SegmentBox&#8221; tablegrid.<br />
Some demos: (25-30 % from full functional)<br />
- segmentbox.com/demo/more/admin.html<br />
- segmentbox.com/demo/sklif/admin.html</p>
<p>I want to make &#8220;SegmentBox&#8221; work together with MOOBARGRAPH.<br />
To build GRAPH from data of segmentbox tablegrid</p>
<p>So segmentbox tablegrid use csv structure&#8230;<br />
&#8220;3|true|name|2,1,3|1000|2000|2010-11-21&#8243;</p>
<p>If you have free time, mail me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lazarevic Ivan</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-870</link>
		<dc:creator>Lazarevic Ivan</dc:creator>
		<pubDate>Mon, 26 Apr 2010 14:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-870</guid>
		<description>Brennan, I know for that issue. It appears when difference between lowest and highest value is big.</description>
		<content:encoded><![CDATA[<p>Brennan, I know for that issue. It appears when difference between lowest and highest value is big.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brennan</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-823</link>
		<dc:creator>Brennan</dc:creator>
		<pubDate>Sat, 24 Apr 2010 21:12:33 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-823</guid>
		<description>Can you please help me? When I use this like so:



graphdata = new Array(
  	 [232,&#039;1&#039;,,,&#039;Month 1&#039;],
  	 [340,&#039;2&#039;,,,&#039;Month 2&#039;],
	 [497,&#039;3&#039;,,,&#039;Month 3&#039;],
  	 [728,&#039;4&#039;,,,&#039;Month 4&#039;],
  	 [1066,&#039;5&#039;,,,&#039;Month 5&#039;],
  	 [1561,&#039;6&#039;,,,&#039;Month 6&#039;],
  	 [2286,&#039;7&#039;,,,&#039;Month 7&#039;],
  	 [3346,&#039;8&#039;,,,&#039;Month 8&#039;],
  	 [4899,&#039;9&#039;,,,&#039;Month 9&#039;],
  	 [7173,&#039;10&#039;,,,&#039;Month 10&#039;]
	 
	);
 
 
window.addEvent(&#039;domready&#039;, function() {
	var myGraph = new mooBarGraph({
	container: $(&#039;graph&#039;),
	width: 1000,
	height: 1000,
	data: graphdata,
	colors: [&#039;#5757FF&#039;,&#039;#5757FF&#039;,&#039;#5757FF&#039;],
	color: &#039;#1A2944&#039;,
	legend: false,
	prefix: &#039;$&#039;,
	legendWidth: 150,
	title: &#039;Escape scenario chart&#039;
});
})

I&#039;m getting a wonderful graph, but the FIRST bar is about 20 pixels below, such as if it&#039;s a negative value (but it&#039;s not.) Why is this?? 

Thanks!</description>
		<content:encoded><![CDATA[<p>Can you please help me? When I use this like so:</p>
<p>graphdata = new Array(<br />
  	 [232,'1',,,'Month 1'],<br />
  	 [340,'2',,,'Month 2'],<br />
	 [497,'3',,,'Month 3'],<br />
  	 [728,'4',,,'Month 4'],<br />
  	 [1066,'5',,,'Month 5'],<br />
  	 [1561,'6',,,'Month 6'],<br />
  	 [2286,'7',,,'Month 7'],<br />
  	 [3346,'8',,,'Month 8'],<br />
  	 [4899,'9',,,'Month 9'],<br />
  	 [7173,'10',,,'Month 10']</p>
<p>	);</p>
<p>window.addEvent(&#8217;domready&#8217;, function() {<br />
	var myGraph = new mooBarGraph({<br />
	container: $(&#8217;graph&#8217;),<br />
	width: 1000,<br />
	height: 1000,<br />
	data: graphdata,<br />
	colors: ['#5757FF','#5757FF','#5757FF'],<br />
	color: &#8216;#1A2944&#8242;,<br />
	legend: false,<br />
	prefix: &#8216;$&#8217;,<br />
	legendWidth: 150,<br />
	title: &#8216;Escape scenario chart&#8217;<br />
});<br />
})</p>
<p>I&#8217;m getting a wonderful graph, but the FIRST bar is about 20 pixels below, such as if it&#8217;s a negative value (but it&#8217;s not.) Why is this?? </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simple Bar and Stacked Bar (AJAX) Graphs: mooBarGraph</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-312</link>
		<dc:creator>Simple Bar and Stacked Bar (AJAX) Graphs: mooBarGraph</dc:creator>
		<pubDate>Thu, 04 Mar 2010 12:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-312</guid>
		<description>[...] Source: http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Source: <a href="http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/" rel="nofollow">http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Създаване на Bar Charts с MooTools и jQuery &#124; Web 2.0 Blog</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-184</link>
		<dc:creator>Създаване на Bar Charts с MooTools и jQuery &#124; Web 2.0 Blog</dc:creator>
		<pubDate>Thu, 18 Feb 2010 08:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-184</guid>
		<description>[...] mooBarGraph (за MooTools) [...]</description>
		<content:encoded><![CDATA[<p>[...] mooBarGraph (за MooTools) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJAX Graphs For MooTools With mooBarGraph Ajax Help W3C Tag</title>
		<link>http://workshop.rs/2010/02/moobargraph-ajax-graph-for-mootools/comment-page-1/#comment-158</link>
		<dc:creator>AJAX Graphs For MooTools With mooBarGraph Ajax Help W3C Tag</dc:creator>
		<pubDate>Tue, 16 Feb 2010 07:19:40 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.rs/?p=87#comment-158</guid>
		<description>[...] mooBarGraph is AJAX graph plugin for MooTools which enables you to easily add simple bar and stacked bar graphs in your web pages. It can make graphs from your JSON data and is compatible with all major browsers including Internet Explorer 6. [...]</description>
		<content:encoded><![CDATA[<p>[...] mooBarGraph is AJAX graph plugin for MooTools which enables you to easily add simple bar and stacked bar graphs in your web pages. It can make graphs from your JSON data and is compatible with all major browsers including Internet Explorer 6. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>


<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-11860629-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
