<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: About me</title>
	<atom:link href="http://joekuan.wordpress.com/about/feed/" rel="self" type="application/rss+xml" />
	<link>http://joekuan.wordpress.com</link>
	<description>Including this bug... there have been... exactly... one... thousand... five hundred and two</description>
	<lastBuildDate>Mon, 13 May 2013 15:37:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Roman</title>
		<link>http://joekuan.wordpress.com/about/#comment-1605</link>
		<dc:creator><![CDATA[Roman]]></dc:creator>
		<pubDate>Tue, 23 Apr 2013 13:42:24 +0000</pubDate>
		<guid isPermaLink="false">#comment-1605</guid>
		<description><![CDATA[yep, it worked :)
no-store binding, populating series with pairs of {x:value, y:date} and setting 
xAxis : {
   type: ‘datetime’,
....

Thank you!]]></description>
		<content:encoded><![CDATA[<p>yep, it worked :)<br />
no-store binding, populating series with pairs of {x:value, y:date} and setting<br />
xAxis : {<br />
   type: ‘datetime’,<br />
&#8230;.</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Kuan</title>
		<link>http://joekuan.wordpress.com/about/#comment-1603</link>
		<dc:creator><![CDATA[Joe Kuan]]></dc:creator>
		<pubDate>Tue, 23 Apr 2013 01:35:05 +0000</pubDate>
		<guid isPermaLink="false">#comment-1603</guid>
		<description><![CDATA[Highcharts supports numerical x-axis and other options for formatting date time values, such as formatter and dateTimeLabelFormats. The online demo &#039;Line Shift - numerical x-axis&#039; illustrates how to format numerical x-axis values.

 xAxis : {
       type: &#039;datetime&#039;,
       title : {
           text : &#039;Time&#039;
       }
}
]]></description>
		<content:encoded><![CDATA[<p>Highcharts supports numerical x-axis and other options for formatting date time values, such as formatter and dateTimeLabelFormats. The online demo &#8216;Line Shift &#8211; numerical x-axis&#8217; illustrates how to format numerical x-axis values.</p>
<p> xAxis : {<br />
       type: &#8216;datetime&#8217;,<br />
       title : {<br />
           text : &#8216;Time&#8217;<br />
       }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roman</title>
		<link>http://joekuan.wordpress.com/about/#comment-1602</link>
		<dc:creator><![CDATA[Roman]]></dc:creator>
		<pubDate>Mon, 22 Apr 2013 22:28:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-1602</guid>
		<description><![CDATA[tried passing 
1. [date,value]  (Highcharts doesn&#039;t see the date - x marks are from 0 to...number of values)
2. [&quot;time&quot;:date,&quot;value&quot;:value] with specifying xField:&#039;time&quot;
3. for 1st series created in memory store to use bindStore and then load the rest series using addSeries

none worked :-(]]></description>
		<content:encoded><![CDATA[<p>tried passing<br />
1. [date,value]  (Highcharts doesn&#8217;t see the date &#8211; x marks are from 0 to&#8230;number of values)<br />
2. ["time":date,"value":value] with specifying xField:&#8217;time&#8221;<br />
3. for 1st series created in memory store to use bindStore and then load the rest series using addSeries</p>
<p>none worked :-(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roman</title>
		<link>http://joekuan.wordpress.com/about/#comment-1599</link>
		<dc:creator><![CDATA[Roman]]></dc:creator>
		<pubDate>Mon, 22 Apr 2013 14:30:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-1599</guid>
		<description><![CDATA[even if x1,x2,x3,.. are dataType;&#039;date&#039; ?]]></description>
		<content:encoded><![CDATA[<p>even if x1,x2,x3,.. are dataType;&#8217;date&#8217; ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Kuan</title>
		<link>http://joekuan.wordpress.com/about/#comment-1597</link>
		<dc:creator><![CDATA[Joe Kuan]]></dc:creator>
		<pubDate>Sat, 20 Apr 2013 23:35:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-1597</guid>
		<description><![CDATA[The extension allows you to add dynamic series without binding to a store

You can try to use addSeries as follows:

addSeries([{
     type: &#039;spline&#039;,
     data: [ [ x1, y1 ], [ x2, y2 ], [ x3, y3 ], .... ]
}]);

Thanks
Joe]]></description>
		<content:encoded><![CDATA[<p>The extension allows you to add dynamic series without binding to a store</p>
<p>You can try to use addSeries as follows:</p>
<p>addSeries([{<br />
     type: 'spline',<br />
     data: [ [ x1, y1 ], [ x2, y2 ], [ x3, y3 ], &#8230;. ]<br />
}]);</p>
<p>Thanks<br />
Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roman</title>
		<link>http://joekuan.wordpress.com/about/#comment-1596</link>
		<dc:creator><![CDATA[Roman]]></dc:creator>
		<pubDate>Fri, 19 Apr 2013 22:48:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-1596</guid>
		<description><![CDATA[Joe,
Your extension + highcharts is the only combination I found that allows me to generate charts in ExtJS while dynamically adding series. I have undefined numbers of series which represent data spread over period of time (one of the fields represent date)
Using addSeries() I can compare these series dynamically! But what should I do with x values (date in my case)? Can I control X-values during series generation or is there other workaround?

Tried to make fake store - to bind the chart to. Store has only one field - Time. But it breaks the chart.
Any clue is greatly appreciated!

Thanks,
Roman]]></description>
		<content:encoded><![CDATA[<p>Joe,<br />
Your extension + highcharts is the only combination I found that allows me to generate charts in ExtJS while dynamically adding series. I have undefined numbers of series which represent data spread over period of time (one of the fields represent date)<br />
Using addSeries() I can compare these series dynamically! But what should I do with x values (date in my case)? Can I control X-values during series generation or is there other workaround?</p>
<p>Tried to make fake store &#8211; to bind the chart to. Store has only one field &#8211; Time. But it breaks the chart.<br />
Any clue is greatly appreciated!</p>
<p>Thanks,<br />
Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Kuan</title>
		<link>http://joekuan.wordpress.com/about/#comment-1421</link>
		<dc:creator><![CDATA[Joe Kuan]]></dc:creator>
		<pubDate>Sat, 26 Jan 2013 10:56:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-1421</guid>
		<description><![CDATA[1. No, current the extension doesn&#039;t support multiple stores. Partly, I don&#039;t get many feature requests on this issue. If you really have to use multiple stores, then I suggest you use addSeries with &#039;data&#039; option that are extracted from those store.on(&#039;load&#039;). Assume you have a refresh button, then you reload all those stores together and call the internal chart API functions setData.

2. Sorry, I don&#039;t really follow this. I think you need to point me to particular section of your code and guide me through your online demo.

3. x axis range should be configured via Highcharts configuration section. 

4. Yes, you can mix lines and scatter in one chart and I don&#039;t see any problem doing that with the extension. What do you mean by &#039;too different&#039;? The data model/definition or the value range?

PS: Email me via kuan.joe@gmail.com, as this may require quite a few exchanges.

Thanks
Joe]]></description>
		<content:encoded><![CDATA[<p>1. No, current the extension doesn&#8217;t support multiple stores. Partly, I don&#8217;t get many feature requests on this issue. If you really have to use multiple stores, then I suggest you use addSeries with &#8216;data&#8217; option that are extracted from those store.on(&#8216;load&#8217;). Assume you have a refresh button, then you reload all those stores together and call the internal chart API functions setData.</p>
<p>2. Sorry, I don&#8217;t really follow this. I think you need to point me to particular section of your code and guide me through your online demo.</p>
<p>3. x axis range should be configured via Highcharts configuration section. </p>
<p>4. Yes, you can mix lines and scatter in one chart and I don&#8217;t see any problem doing that with the extension. What do you mean by &#8216;too different&#8217;? The data model/definition or the value range?</p>
<p>PS: Email me via <a href="mailto:kuan.joe@gmail.com">kuan.joe@gmail.com</a>, as this may require quite a few exchanges.</p>
<p>Thanks<br />
Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://joekuan.wordpress.com/about/#comment-1410</link>
		<dc:creator><![CDATA[Frank]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 12:50:43 +0000</pubDate>
		<guid isPermaLink="false">#comment-1410</guid>
		<description><![CDATA[Sure, any help is welcome!
The following is a pure Highcharts sample what I am trying like to achieve:
http://www.hasensprung.org/myETA/chart.html

The following what I have right now:
http://www.hasensprung.org/myETA/app.html

Best,
Frank]]></description>
		<content:encoded><![CDATA[<p>Sure, any help is welcome!<br />
The following is a pure Highcharts sample what I am trying like to achieve:<br />
<a href="http://www.hasensprung.org/myETA/chart.html" rel="nofollow">http://www.hasensprung.org/myETA/chart.html</a></p>
<p>The following what I have right now:<br />
<a href="http://www.hasensprung.org/myETA/app.html" rel="nofollow">http://www.hasensprung.org/myETA/app.html</a></p>
<p>Best,<br />
Frank</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Kuan</title>
		<link>http://joekuan.wordpress.com/about/#comment-1409</link>
		<dc:creator><![CDATA[Joe Kuan]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 12:44:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-1409</guid>
		<description><![CDATA[Sorry, extremely busy right now. I will try to give u some answers in the weekend]]></description>
		<content:encoded><![CDATA[<p>Sorry, extremely busy right now. I will try to give u some answers in the weekend</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://joekuan.wordpress.com/about/#comment-1406</link>
		<dc:creator><![CDATA[Frank]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 09:59:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-1406</guid>
		<description><![CDATA[Hi Joe, I started using your Highcharts Sencha adapter in a small project. It works fine as long using one single ExtJS store.

For this I have the following questions:
1. Can I use multiple stores and define per serie what store to use?
2. When loading a store, I tried to figure out how I can assgin an Y value to a specific value on the X axis. Although trying to use &quot;xField&quot; I never managed, data from the serie always gets assigned to the [0] index on the x Axis
3. As well I tried to setup x Axis wit a range from -20 to +30. Again I was not able to assign data starting by -20
4. I would like to mix lines and scatter in one chart. I think this will only be feasible by using multpil stores since the data is too different...?

It&#039;s not a secret, so you may check the details in the website link of this post.

Thank&#039;s a lot for your help,
Frank]]></description>
		<content:encoded><![CDATA[<p>Hi Joe, I started using your Highcharts Sencha adapter in a small project. It works fine as long using one single ExtJS store.</p>
<p>For this I have the following questions:<br />
1. Can I use multiple stores and define per serie what store to use?<br />
2. When loading a store, I tried to figure out how I can assgin an Y value to a specific value on the X axis. Although trying to use &#8220;xField&#8221; I never managed, data from the serie always gets assigned to the [0] index on the x Axis<br />
3. As well I tried to setup x Axis wit a range from -20 to +30. Again I was not able to assign data starting by -20<br />
4. I would like to mix lines and scatter in one chart. I think this will only be feasible by using multpil stores since the data is too different&#8230;?</p>
<p>It&#8217;s not a secret, so you may check the details in the website link of this post.</p>
<p>Thank&#8217;s a lot for your help,<br />
Frank</p>
]]></content:encoded>
	</item>
</channel>
</rss>
