<?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>Web Dev News &#187; JavaScript &#8211; News for Web Developers</title>
	<atom:link href="http://webdevnews.net/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdevnews.net</link>
	<description>News For Web Developers</description>
	<lastBuildDate>Sat, 06 Nov 2010 18:22:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>FMCharts: Dynamic and Accessible Web Charts</title>
		<link>http://webdevnews.net/2009/07/fmcharts-dynamic-accessible-web-charts/</link>
		<comments>http://webdevnews.net/2009/07/fmcharts-dynamic-accessible-web-charts/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 19:53:49 +0000</pubDate>
		<dc:creator>corrideat</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[charting]]></category>

		<guid isPermaLink="false">http://webdevnews.net/?p=1128</guid>
		<description><![CDATA[I have been developing a script that shows bar graphs. While similar systems already exist, this one particularly is geared towards accessibility. I was inspired on CSS For Bar Graphs. However, a major improvement is the added flexibility that comes from implementing it in ECMAScript. Even with these changes, the prevailing first intention remains: that [...]<p>This is a post from <a href="http://webdevnews.net" title="News for Web Developers">Web Dev News</a>, a site brought to you by <a href="http://xavisys.com" title="For all your web development needs">Xavisys Web Development</a>.  <br/><br/><a href="http://webdevnews.net/2009/07/fmcharts-dynamic-accessible-web-charts/">FMCharts: Dynamic and Accessible Web Charts</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I have been developing a script that shows bar graphs. While similar<br />
systems already exist, this one particularly is geared towards<br />
accessibility. I was inspired on <a href="http://apples-to-oranges.com/blog/post/css-for-bar-graphs/?id=55">CSS For Bar Graphs</a>. However, a major improvement is the added flexibility that comes from implementing it in ECMAScript. Even with these changes, the prevailing<br />
first intention remains: that the graph is readable in plain HTML,<br />
which is why it is appropriate for an accessible design. It works by<br />
firstly creating the appropiate DOM tree of the graph, and then<br />
applying the corresponding styles.</p>
<p>The script is available at the address <a href="http://0xj.info/js/graphs.js">http://0xj.info/js/graphs.js</a>. Using it isn&#8217;t that complicated.</p>
<p>The first thing is to create an instance of the object.</p>
<pre class="brush: javascript">var x=_FMchart();</pre>
<p>Then a layer must be specified, either in string or in DOM node form.<br />
Accordingly:</p>
<pre class="brush: javascript">x.setLayer(&quot;LayerID&quot;);
x.setLayer(document.getElementById(&quot;LayerID&quot;));
</pre>
<p>After that, the data should be given:</p>
<pre class="brush: javascript">
x.draw(
{title:&quot;Cases of H1N1 Influenza A in South America by country (progessive)&quot;,
categories: [&quot;AR&quot;, [&quot;BO&quot;,&quot;999&quot;], &quot;BR&quot;, &quot;CL&quot;, &quot;CO&quot;, &quot;EC&quot;, &quot;PE&quot;, &quot;PY&quot;, &quot;SR&quot;, &quot;UY&quot;, &quot;VE&quot;],
proportional:true,
multidimentional:true,
dimensions:{w:&quot;600px&quot;},
data:{
&quot;20090626&quot;:[1587,47,452,5186,72,125,360,79,11,195,153],
&quot;20090705&quot;:[2485,319,812,7342,101,163,811,103,12,195,204],
&quot;20090709&quot;:[2677,544,977,8160,118,204,1135,114,12,195,222],
&quot;20090711&quot;:[2928,545,1027,9549,138,204,1580,114,12,520,231],
&quot;20090714&quot;:[3056,545,1027,9549,166,204,1753,114,12,520,234]
}
});
</pre>
<p>The properties are</p>
<dl>
<dt>title</dt>
<dd>title (caption)</dd>
<dt>categories</dt>
<dd>array containing the different elements described by the data. In<br />
the example, we are using the default colors for all the categories,<br />
with the exception of BO (using color #999999.)</dd>
<dt>proportional</dt>
<dd>if set to true, it replaces the absolute values by relative<br />
percentual values (eg 4 in a sample of 10 is represented as 40%.)</dd>
<dt>multidimentional</dt>
<dd>if set to true the length of the bars must be proportional among<br />
them (only available for a sample or more)</dd>
<dt>data</dt>
<dd>the data itself. Labels are needed to compare data from different samples.<br />
dimensions an object containing either one or both of the properties w (for<br />
width) and h (for height), with units</dd>
<dt>helper</dt>
<dd>the function which will apply the styles. For example, for a pie<br />
chart it will be x.helpers.pie</dd>
<dt>helperArgs</dt>
<dd>array containing the different arguments to pass to the helper.</dd>
</dl>
<p>For instance, the first value sets the radius (in pixels) to use for<br />
the pie chart when using helpers.pie</p>
<p>Pie charts require SVG or VML support. Bar charts are currently supported on the following browsers:</p>
<ul>
<li>MSIE 5.5, 6, 7 and 8 (for Windows)</li>
<li>Netscape 7 and 9</li>
<li>Arora 0.7.1</li>
<li>Mozilla Firefox 0.8, 1.0.8, 1.5.0.12, 2.0.0.20, 3.0 and 3.5</li>
<li>Konqueror 3.5 and 4.2</li>
<li>Galeon 2.0.6</li>
<li>Opera 9.26, 9.63, 9.64 and 10</li>
<li>Kazehakase 0.5.4</li>
<li>Epiphany 2.22 and 2.26.3</li>
<li>K-Meleon 1.1.4</li>
<li>Flock 2.0.3</li>
<li>Safari 3.2.1 and 4.0</li>
<li>Avant 11.7</li>
</ul>
<p>A demo available at <a href="http://youruseragent.info/download/chart.html">http://youruseragent.info/download/chart.html</a>. More information (in Spanish) <a href="http://blog.msl37.org/2009/07/12/52/">is also available</a>.</p>
<p><a href='http://webdevnews.net/wp-content/uploads/2009/07/graphs.js' title='Download the javascript file'>graphs.js</a></p>
<p>This is a post from <a href="http://webdevnews.net" title="News for Web Developers">Web Dev News</a>, a site brought to you by <a href="http://xavisys.com" title="For all your web development needs">Xavisys Web Development</a>.  <br/><br/><a href="http://webdevnews.net/2009/07/fmcharts-dynamic-accessible-web-charts/">FMCharts: Dynamic and Accessible Web Charts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdevnews.net/2009/07/fmcharts-dynamic-accessible-web-charts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JSConf 2009 April 24 &amp; 25 Washington DC</title>
		<link>http://webdevnews.net/2009/04/jsconf-2009-april-24-25-washington-dc/</link>
		<comments>http://webdevnews.net/2009/04/jsconf-2009-april-24-25-washington-dc/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 13:00:48 +0000</pubDate>
		<dc:creator>voodootikigod</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Development Tools]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[ria]]></category>
		<category><![CDATA[Script Development]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://webdevnews.net/?p=390</guid>
		<description><![CDATA[JSConf 2009 is the first conference dedicated to JavaScript developers in all forms and it is shaping up to be one amazing conference. The conference brings together some of the greatest visionaries and developers within the JS community including John Resig creator of jQuery, Jason Huggins creator of Selenium testing environment, and Stefan Stoyanov from [...]<p>This is a post from <a href="http://webdevnews.net" title="News for Web Developers">Web Dev News</a>, a site brought to you by <a href="http://xavisys.com" title="For all your web development needs">Xavisys Web Development</a>.  <br/><br/><a href="http://webdevnews.net/2009/04/jsconf-2009-april-24-25-washington-dc/">JSConf 2009 April 24 &#038; 25 Washington DC</a></p>
]]></description>
			<content:encoded><![CDATA[<p>JSConf 2009 is the first conference dedicated to JavaScript developers in all forms and it is shaping up to be one amazing conference. The conference brings together some of the greatest visionaries and developers within the JS community including John Resig creator of jQuery, Jason Huggins creator of Selenium testing environment, and Stefan Stoyanov from YUI. This is an incredible opportunity for anyone doing web based development since the conference material will show you how to use JavaScript in the browser, on the server, and on mobile handsets. Over two days you will learn about cutting edge technologies, how to get a great job in the web development world, and network with some of the most important people in the next generation web industry.</p>
<p>JSConf 2009 will be held in Washington DC between April 24 and 25, 2009. The conference brings together 16 speakers to present on JavaScript development in the browser, mobile, desktop, and server environments. If you haven&#8217;t had much of a chance to do some deep JavaScript work, this conference is a great way to learn from some of the best. Although many people don&#8217;t realize it, JavaScript can also be used to build thick client desktop applications. In addition, it is one of the only languages to successfully bridge object oriented and functional programming in a way that anyone can use it. JavaScript has seen an incredible rise with modern web application frameworks and it only seems to be increasing in the coming years, this is the only conference that will show you how important JavaScript is to your programming and design capabilities.</p>
<p>The conference is purposefully being kept small and intimate so you will be able to interact with the speakers and attendees during the day and during the social events. Also there will be many opportunities to interact with the sponsors and select vendors that will present to network and potential pursue employment opportunities. The conference costs $450 right now for two full days worth of speakers, breakfasts, lunches, a beer and wine tasting social event on Friday Evening, and a networking social event on Saturday Evening. If you are looking for more work, this conference has also drawn the attention of a lot of hiring employers who are looking for top notch developers.</p>
<p>If you are interested in going, we recommend getting your tickets soon at <a href="http://jsconf2009.eventbrite.com/" target="_blank">http://jsconf2009.eventbrite.com</a> as they are selling very quickly. For more information or other speakers, check the website at <a href="http://www.jsconf2009.com/" target="_blank">http://www.jsconf2009.com</a> or twitter us @<a href="http://twitter.com/jsconf">jsconf</a></p>
<p>This is a post from <a href="http://webdevnews.net" title="News for Web Developers">Web Dev News</a>, a site brought to you by <a href="http://xavisys.com" title="For all your web development needs">Xavisys Web Development</a>.  <br/><br/><a href="http://webdevnews.net/2009/04/jsconf-2009-april-24-25-washington-dc/">JSConf 2009 April 24 &#038; 25 Washington DC</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdevnews.net/2009/04/jsconf-2009-april-24-25-washington-dc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

