<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: ProtoChart - Download, Examples &#038; Docs Now Available!</title>
	<link>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/</link>
	<description>Deensoft blog</description>
	<pubDate>Wed, 07 Jan 2009 10:15:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>By: outaTiME at refinn dot com &#187; Blog Archive &#187; ProtoChart: Prototype + Canvas = Pretty Charts</title>
		<link>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7989</link>
		<dc:creator>outaTiME at refinn dot com &#187; Blog Archive &#187; ProtoChart: Prototype + Canvas = Pretty Charts</dc:creator>
		<pubDate>Mon, 11 Aug 2008 16:14:12 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7989</guid>
		<description>[...] Update: Code and more information can be found here.  [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Update: Code and more information can be found here.  [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Obaid</title>
		<link>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7919</link>
		<dc:creator>Obaid</dc:creator>
		<pubDate>Fri, 01 Aug 2008 14:33:47 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7919</guid>
		<description>We have started a tutorial session on our blog. Please refer to those and many more to come to see how you can use ProtoChart.</description>
		<content:encoded><![CDATA[<p>We have started a tutorial session on our blog. Please refer to those and many more to come to see how you can use ProtoChart.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anders</title>
		<link>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7915</link>
		<dc:creator>Anders</dc:creator>
		<pubDate>Fri, 01 Aug 2008 12:27:12 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7915</guid>
		<description>Hey!

Do you think you can make a easy example how to use it from start. 
What code do I have to write on my page. Tried the example but they want show me anything.

Thanks Anders</description>
		<content:encoded><![CDATA[<p>Hey!</p>
<p>Do you think you can make a easy example how to use it from start.<br />
What code do I have to write on my page. Tried the example but they want show me anything.</p>
<p>Thanks Anders</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Obaid</title>
		<link>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7886</link>
		<dc:creator>Obaid</dc:creator>
		<pubDate>Thu, 31 Jul 2008 13:34:51 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7886</guid>
		<description>Ani the issue is the way you are passing your data..

Each dataset is a [x, y] pair.. so you should pass in:

{ data: [ [x1,y1], [x2,y2], … ], label: "data 1" }

that should fix your chart..

let me know if you have any further questions :)</description>
		<content:encoded><![CDATA[<p>Ani the issue is the way you are passing your data..</p>
<p>Each dataset is a [x, y] pair.. so you should pass in:</p>
<p>{ data: [ [x1,y1], [x2,y2], … ], label: &#8220;data 1&#8243; }</p>
<p>that should fix your chart..</p>
<p>let me know if you have any further questions <img src='http://blog.deensoft.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ani</title>
		<link>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7881</link>
		<dc:creator>Ani</dc:creator>
		<pubDate>Thu, 31 Jul 2008 10:40:41 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7881</guid>
		<description>Hi,


I am facing a small issue. I will post my code first


new Proto.Chart($('linechart'), 
	[ 
		{data: [1, 5], label: "Data 1"},
		{data: [3, 9], label: "Data 2"}

	],
	{
		xaxis: {min: 0, max: 14, tickSize: 1},
		yaxis: {min: 0, max: 10, tickSize: 1}	,
		legend: {show: true},
		points: {show: true},
		lines: {show: true}
	});	



I am getting error like : An invalid or illegal string was specified" code: "12 
I can see the axis and legend but the lines are not getting displayed. Any suggestions? What I am doing wrong here?

I am using Firefox 3.0.1</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am facing a small issue. I will post my code first</p>
<p>new Proto.Chart($(&#8217;linechart&#8217;),<br />
	[<br />
		{data: [1, 5], label: &#8220;Data 1&#8243;},<br />
		{data: [3, 9], label: &#8220;Data 2&#8243;}</p>
<p>	],<br />
	{<br />
		xaxis: {min: 0, max: 14, tickSize: 1},<br />
		yaxis: {min: 0, max: 10, tickSize: 1}	,<br />
		legend: {show: true},<br />
		points: {show: true},<br />
		lines: {show: true}<br />
	});	</p>
<p>I am getting error like : An invalid or illegal string was specified&#8221; code: &#8220;12<br />
I can see the axis and legend but the lines are not getting displayed. Any suggestions? What I am doing wrong here?</p>
<p>I am using Firefox 3.0.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivar</title>
		<link>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7829</link>
		<dc:creator>Ivar</dc:creator>
		<pubDate>Wed, 30 Jul 2008 18:58:51 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7829</guid>
		<description>cool. thanks for this !</description>
		<content:encoded><![CDATA[<p>cool. thanks for this !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ProtoChart: Prototype + Canvas = Pretty Charts :: Deensoft</title>
		<link>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7827</link>
		<dc:creator>ProtoChart: Prototype + Canvas = Pretty Charts :: Deensoft</dc:creator>
		<pubDate>Wed, 30 Jul 2008 17:44:31 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/07/30/protochart-download-examples-docs-now-available/#comment-7827</guid>
		<description>[...] Update: Code and more information can be found here.  [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Update: Code and more information can be found here.  [&#8230;]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
