<?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: Plotting in jQuery</title>
	<atom:link href="http://ajaxian.com/archives/plotting-in-jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/plotting-in-jquery</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Sun, 21 Mar 2010 02:12:15 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: olau</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259901</link>
		<dc:creator>olau</dc:creator>
		<pubDate>Wed, 12 Dec 2007 10:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259901</guid>
		<description>Hm, this seems like a bug. Would you mind entering a bug report here so I don&#039;t forget about it:

  http://code.google.com/p/flot/issues/list</description>
		<content:encoded><![CDATA[<p>Hm, this seems like a bug. Would you mind entering a bug report here so I don&#8217;t forget about it:</p>
<p>  <a href="http://code.google.com/p/flot/issues/list" rel="nofollow">http://code.google.com/p/flot/issues/list</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: internetschach</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259817</link>
		<dc:creator>internetschach</dc:creator>
		<pubDate>Fri, 07 Dec 2007 23:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259817</guid>
		<description>Oh yes, this is easier! :-)

But I tried to find out the best way to create a chart with bars.

I use the following statement to declare the data:

{data: [[0,28], [0,28]],label: &quot;label goes here&quot;,bars: {show: true }   },

I think it is a little bit redundant to specify [0,28] twice, but if I try something like 
{data: [[0,28]],label: &quot;label goes here&quot;,bars: {show: true }   },
only the legend is shown, but no bars. What am I doing wrong?

(maybe it is a stupid question because it works if I use the first statement, but it seems to me that even the bars are painted twice, so the colors (originally pastel colors) are much darker.

Best regards!</description>
		<content:encoded><![CDATA[<p>Oh yes, this is easier! :-)</p>
<p>But I tried to find out the best way to create a chart with bars.</p>
<p>I use the following statement to declare the data:</p>
<p>{data: [[0,28], [0,28]],label: &#8220;label goes here&#8221;,bars: {show: true }   },</p>
<p>I think it is a little bit redundant to specify [0,28] twice, but if I try something like<br />
{data: [[0,28]],label: &#8220;label goes here&#8221;,bars: {show: true }   },<br />
only the legend is shown, but no bars. What am I doing wrong?</p>
<p>(maybe it is a stupid question because it works if I use the first statement, but it seems to me that even the bars are painted twice, so the colors (originally pastel colors) are much darker.</p>
<p>Best regards!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: olau</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259787</link>
		<dc:creator>olau</dc:creator>
		<pubDate>Fri, 07 Dec 2007 11:29:08 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259787</guid>
		<description>The easiest way to disable ticks is to specify an empty ticks array:

xaxis: { ticks: [] }
yaxis: { ticks: [] }

I&#039;ve explained this in the API documentation now. noTicks is a bit weird because it uses a heuristic instead of being exact. Hope this helps. :-)</description>
		<content:encoded><![CDATA[<p>The easiest way to disable ticks is to specify an empty ticks array:</p>
<p>xaxis: { ticks: [] }<br />
yaxis: { ticks: [] }</p>
<p>I&#8217;ve explained this in the API documentation now. noTicks is a bit weird because it uses a heuristic instead of being exact. Hope this helps. :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: internetschach</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259763</link>
		<dc:creator>internetschach</dc:creator>
		<pubDate>Thu, 06 Dec 2007 18:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259763</guid>
		<description>Nice tool! I saw it yesterday on del.icio.us and just tried it out. I played a little bit around with it and got that (very simple):
http://internetschach.de/verein.aspx

One question:
I tried to format the legend with
{
                yaxis: { noTicks: 0 },
                xaxis: { noTicks: 0 }}
But this didn&#039;t work properly (nothing could be seen).
I fixed it using a TickerFormatter like
{
                yaxis: { tickFormatter: gettick },
                xaxis: { noTicks: 0 }}
with 
  function gettick(val) {
    return &quot;&quot;;
  }

The workaround is simple, but, however, it is a little bit strange.

But I like the tool! :-)

Best regards!</description>
		<content:encoded><![CDATA[<p>Nice tool! I saw it yesterday on del.icio.us and just tried it out. I played a little bit around with it and got that (very simple):<br />
<a href="http://internetschach.de/verein.aspx" rel="nofollow">http://internetschach.de/verein.aspx</a></p>
<p>One question:<br />
I tried to format the legend with<br />
{<br />
                yaxis: { noTicks: 0 },<br />
                xaxis: { noTicks: 0 }}<br />
But this didn&#8217;t work properly (nothing could be seen).<br />
I fixed it using a TickerFormatter like<br />
{<br />
                yaxis: { tickFormatter: gettick },<br />
                xaxis: { noTicks: 0 }}<br />
with<br />
  function gettick(val) {<br />
    return &#8220;&#8221;;<br />
  }</p>
<p>The workaround is simple, but, however, it is a little bit strange.</p>
<p>But I like the tool! :-)</p>
<p>Best regards!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WebmonkeyIreland</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259749</link>
		<dc:creator>WebmonkeyIreland</dc:creator>
		<pubDate>Thu, 06 Dec 2007 15:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259749</guid>
		<description>Oh how lovely this is. Will integrate nicely with loads of things Im working at.</description>
		<content:encoded><![CDATA[<p>Oh how lovely this is. Will integrate nicely with loads of things Im working at.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jrrl</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259740</link>
		<dc:creator>jrrl</dc:creator>
		<pubDate>Thu, 06 Dec 2007 14:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259740</guid>
		<description>Hmmm... I&#039;ve been meaning to play around with mootools more... might have to port this over to that.</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230; I&#8217;ve been meaning to play around with mootools more&#8230; might have to port this over to that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flesler</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259733</link>
		<dc:creator>Flesler</dc:creator>
		<pubDate>Thu, 06 Dec 2007 13:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259733</guid>
		<description>It looks great! I like it.</description>
		<content:encoded><![CDATA[<p>It looks great! I like it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: YouNeedJava</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259726</link>
		<dc:creator>YouNeedJava</dc:creator>
		<pubDate>Thu, 06 Dec 2007 10:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259726</guid>
		<description>OH.... good. But what are you thinking about FusionChartsFree?
I think FusionCharts is greate charts library and they have free version of his charts. I recommend to try it... 

&lt;a href=&quot;http://www.fusioncharts.com/free/&quot; title=&quot;fusioncharts&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>OH&#8230;. good. But what are you thinking about FusionChartsFree?<br />
I think FusionCharts is greate charts library and they have free version of his charts. I recommend to try it&#8230; </p>
<p><a href="http://www.fusioncharts.com/free/" title="fusioncharts" rel="nofollow"></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gwion</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259725</link>
		<dc:creator>Gwion</dc:creator>
		<pubDate>Thu, 06 Dec 2007 10:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259725</guid>
		<description>Great tool! The zooming and selection features seem to work very smoothly. Especially the last example is quite impressive.</description>
		<content:encoded><![CDATA[<p>Great tool! The zooming and selection features seem to work very smoothly. Especially the last example is quite impressive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DarkRat</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259698</link>
		<dc:creator>DarkRat</dc:creator>
		<pubDate>Wed, 05 Dec 2007 21:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259698</guid>
		<description>hmm. could need something like that for prototype</description>
		<content:encoded><![CDATA[<p>hmm. could need something like that for prototype</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Site Smart</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259696</link>
		<dc:creator>Site Smart</dc:creator>
		<pubDate>Wed, 05 Dec 2007 20:47:45 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259696</guid>
		<description>Now that is some sweet charting goodness. There are too many good bits in all the frameworks. I want them all in one :D</description>
		<content:encoded><![CDATA[<p>Now that is some sweet charting goodness. There are too many good bits in all the frameworks. I want them all in one :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhennessey</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259695</link>
		<dc:creator>bhennessey</dc:creator>
		<pubDate>Wed, 05 Dec 2007 20:00:22 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259695</guid>
		<description>test comment plus</description>
		<content:encoded><![CDATA[<p>test comment plus</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: holst</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259693</link>
		<dc:creator>holst</dc:creator>
		<pubDate>Wed, 05 Dec 2007 18:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259693</guid>
		<description>Err... substitute &quot;it&quot; for &quot;at&quot; in the parenthesis.</description>
		<content:encoded><![CDATA[<p>Err&#8230; substitute &#8220;it&#8221; for &#8220;at&#8221; in the parenthesis.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: holst</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259692</link>
		<dc:creator>holst</dc:creator>
		<pubDate>Wed, 05 Dec 2007 18:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259692</guid>
		<description>@Andy: Not to continue this needlessly, but I find the need to correct your correction. In Danish, &quot;Flot&quot; does mean &quot;pretty&quot; (I don&#039;t agree with atlithorn&#039;s perception that it&#039;s cool, although I see where he&#039;s going it), and since Ole Laursen is Danish, I think it&#039;s safe to assume that&#039;s the intention. In Swedish however, it is called &quot;flott&quot;. So you are yourself wrong :-)</description>
		<content:encoded><![CDATA[<p>@Andy: Not to continue this needlessly, but I find the need to correct your correction. In Danish, &#8220;Flot&#8221; does mean &#8220;pretty&#8221; (I don&#8217;t agree with atlithorn&#8217;s perception that it&#8217;s cool, although I see where he&#8217;s going it), and since Ole Laursen is Danish, I think it&#8217;s safe to assume that&#8217;s the intention. In Swedish however, it is called &#8220;flott&#8221;. So you are yourself wrong :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259691</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Wed, 05 Dec 2007 18:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259691</guid>
		<description>This is going to be great for custom analytics, I&#039;ve been making my charts and graphs with HTML/CSS.  Nice work, Ole.</description>
		<content:encoded><![CDATA[<p>This is going to be great for custom analytics, I&#8217;ve been making my charts and graphs with HTML/CSS.  Nice work, Ole.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259690</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Wed, 05 Dec 2007 18:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259690</guid>
		<description>@JÃ¶rn Zaefferer: Ah, yes. I missed that. Anyway, it would nice if You could mouse-over the dots and it would display the value.</description>
		<content:encoded><![CDATA[<p>@JÃ¶rn Zaefferer: Ah, yes. I missed that. Anyway, it would nice if You could mouse-over the dots and it would display the value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 3Handles</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259688</link>
		<dc:creator>3Handles</dc:creator>
		<pubDate>Wed, 05 Dec 2007 17:59:18 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259688</guid>
		<description>Congratulations Ole, I was long waiting for a plotting library in jQuery and you far exceeded what I was expecting:-) Moreover I really needed something like this by this weekend: great timing also! I&#039;ll drop by your office before Christmas...</description>
		<content:encoded><![CDATA[<p>Congratulations Ole, I was long waiting for a plotting library in jQuery and you far exceeded what I was expecting:-) Moreover I really needed something like this by this weekend: great timing also! I&#8217;ll drop by your office before Christmas&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JÃ¶rn Zaefferer</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259687</link>
		<dc:creator>JÃ¶rn Zaefferer</dc:creator>
		<pubDate>Wed, 05 Dec 2007 17:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259687</guid>
		<description>@Andy: Check the &lt;a href=&quot;http://people.iola.dk/olau/flot/examples/zooming.html&quot; rel=&quot;nofollow&quot;&gt;Zooming with overview&lt;/a&gt; demo, which allows you to select an area in the overview to zoom in on that area in the main diagram.</description>
		<content:encoded><![CDATA[<p>@Andy: Check the <a href="http://people.iola.dk/olau/flot/examples/zooming.html" rel="nofollow">Zooming with overview</a> demo, which allows you to select an area in the overview to zoom in on that area in the main diagram.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259686</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Wed, 05 Dec 2007 17:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259686</guid>
		<description>@atlithorn: Actually, You&#039;re wrong. You&#039;re thinking of &#039;flott&#039;.

Either way, this plotting plugin looks rather good. Would be great with some interaction, though.</description>
		<content:encoded><![CDATA[<p>@atlithorn: Actually, You&#8217;re wrong. You&#8217;re thinking of &#8216;flott&#8217;.</p>
<p>Either way, this plotting plugin looks rather good. Would be great with some interaction, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rey Bango</title>
		<link>http://ajaxian.com/archives/plotting-in-jquery/comment-page-1#comment-259683</link>
		<dc:creator>Rey Bango</dc:creator>
		<pubDate>Wed, 05 Dec 2007 17:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=3081#comment-259683</guid>
		<description>@atlithorn: Thanks for providing the explanation. Very cool name indeed.</description>
		<content:encoded><![CDATA[<p>@atlithorn: Thanks for providing the explanation. Very cool name indeed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
