<?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: Scrolling and zooming chart with CategoryAxis</title>
	<atom:link href="http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/</link>
	<description>Adobe Flex and AIR thoughts, custom components, how-to’s...</description>
	<lastBuildDate>Tue, 22 Nov 2011 12:17:54 +0100</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Raheel</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-7317</link>
		<dc:creator>Raheel</dc:creator>
		<pubDate>Sat, 10 Sep 2011 17:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-7317</guid>
		<description>How i can handle disable ranges with scrolling and zooming? any body plz help me</description>
		<content:encoded><![CDATA[<p>How i can handle disable ranges with scrolling and zooming? any body plz help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: the_new_mr</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-7207</link>
		<dc:creator>the_new_mr</dc:creator>
		<pubDate>Thu, 01 Sep 2011 12:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-7207</guid>
		<description>Beautiful Iwo!

Works a charm!

I changed the component a little bit so that the user can click to zoom and ctrl+click to zoom out.  I shall mail you the changes (though it&#039;s not much).

Thanks again.</description>
		<content:encoded><![CDATA[<p>Beautiful Iwo!</p>
<p>Works a charm!</p>
<p>I changed the component a little bit so that the user can click to zoom and ctrl+click to zoom out.  I shall mail you the changes (though it&#8217;s not much).</p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-5794</link>
		<dc:creator>james</dc:creator>
		<pubDate>Sun, 15 May 2011 01:21:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-5794</guid>
		<description>will category version of chart scroller work with flex 4?

Thanks</description>
		<content:encoded><![CDATA[<p>will category version of chart scroller work with flex 4?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-5191</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 13 Apr 2011 12:50:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-5191</guid>
		<description>Hi, Iwo!
Thanks for great solution.
Could you please hint what is the best way to implement datetimeaxis horizontal scrolling within disabled date ranges ?</description>
		<content:encoded><![CDATA[<p>Hi, Iwo!<br />
Thanks for great solution.<br />
Could you please hint what is the best way to implement datetimeaxis horizontal scrolling within disabled date ranges ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matias</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-3788</link>
		<dc:creator>Matias</dc:creator>
		<pubDate>Thu, 27 Jan 2011 14:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-3788</guid>
		<description>Hi Iwo.

You Example works fine, great work, i&#039;m noobie en flex, so, when you do the categoryLabelFunction to use linear axis like a Category axis, if i change the id of array Data provider to my var that take data from RemoteObj Mysql DB, the application Run but don&#039;t finish to charge, don&#039;t see nothing, mi remote connection run fine, because i can populate a Data grid.

my data provider:

private var datos:ArrayCollection;

[Bindable]
private var datos2:Array;

private function onInit():void
			{
				miServicio.test_chart.send();
			}
		
			
private function onResult():void
			{
				datos= miServicio.test_chart.lastResult;
				datos2=datos.source;
				dGrid.selectedIndex=0;
			}

Your Function with my dataprovider Var:

public function categoryLabelFunction(labelValue:Object, previousValue:Object, axis:IAxis):String
			{
				var index:int = int(labelValue);
				
			    if (index &gt;= 0 &amp;&amp; index &lt; datos2.length)
			        
			       return datos2[index].fechacompra;
			    return &quot;&quot;;
			}	

fechacompra is my category axis row, i tried with &quot;datos&quot; and &quot;datos2&quot; no errors, but the application doesn&#039;t run.

Thank you for your time</description>
		<content:encoded><![CDATA[<p>Hi Iwo.</p>
<p>You Example works fine, great work, i&#8217;m noobie en flex, so, when you do the categoryLabelFunction to use linear axis like a Category axis, if i change the id of array Data provider to my var that take data from RemoteObj Mysql DB, the application Run but don&#8217;t finish to charge, don&#8217;t see nothing, mi remote connection run fine, because i can populate a Data grid.</p>
<p>my data provider:</p>
<p>private var datos:ArrayCollection;</p>
<p>[Bindable]<br />
private var datos2:Array;</p>
<p>private function onInit():void<br />
			{<br />
				miServicio.test_chart.send();<br />
			}</p>
<p>private function onResult():void<br />
			{<br />
				datos= miServicio.test_chart.lastResult;<br />
				datos2=datos.source;<br />
				dGrid.selectedIndex=0;<br />
			}</p>
<p>Your Function with my dataprovider Var:</p>
<p>public function categoryLabelFunction(labelValue:Object, previousValue:Object, axis:IAxis):String<br />
			{<br />
				var index:int = int(labelValue);</p>
<p>			    if (index &gt;= 0 &amp;&amp; index &lt; datos2.length)</p>
<p>			       return datos2[index].fechacompra;<br />
			    return &quot;&quot;;<br />
			}	</p>
<p>fechacompra is my category axis row, i tried with &quot;datos&quot; and &quot;datos2&quot; no errors, but the application doesn&#039;t run.</p>
<p>Thank you for your time</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Indu</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-1022</link>
		<dc:creator>Indu</dc:creator>
		<pubDate>Tue, 24 Aug 2010 10:24:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-1022</guid>
		<description>Hi,
I would like to know whether i could dynamically change the dataprovider elements.
i.e instead of – return dp[index].Month;
how can i change the Month dynamically?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I would like to know whether i could dynamically change the dataprovider elements.<br />
i.e instead of – return dp[index].Month;<br />
how can i change the Month dynamically?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Indu</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-1021</link>
		<dc:creator>Indu</dc:creator>
		<pubDate>Tue, 24 Aug 2010 10:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-1021</guid>
		<description>Hi,
I would like to know whether i could dynamically change the dataprovider elements.
i.e instead of -  return dp[index].Month;
how can i access the Month dynamically?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I would like to know whether i could dynamically change the dataprovider elements.<br />
i.e instead of &#8211;  return dp[index].Month;<br />
how can i access the Month dynamically?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bran Singstom</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-740</link>
		<dc:creator>Bran Singstom</dc:creator>
		<pubDate>Sun, 18 Jul 2010 13:10:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-740</guid>
		<description>Now how can it been modified so that the bars doesn&#039;t disappear when you pan at some direction like its doing now? where in the code is preventing it to be draw all the data, even if its outside the visible area? 

Thanks!</description>
		<content:encoded><![CDATA[<p>Now how can it been modified so that the bars doesn&#8217;t disappear when you pan at some direction like its doing now? where in the code is preventing it to be draw all the data, even if its outside the visible area? </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian1</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-695</link>
		<dc:creator>Brian1</dc:creator>
		<pubDate>Thu, 08 Jul 2010 17:27:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-695</guid>
		<description>Hey , pretty cool!

But there is a problem. If you have millions value and don&#039;t want to show everything when you zoom in and out, i mean how could we filter out values, so it doesn&#039;t get heavy to pan or zoom?

I know there is an algorithm call Douglas_Peucker for simplify lines that can be used. But don&#039;t know how to implement it or where..
How can we me make an function like google stockschart where it depends on the period you chose ?


Sorry my bad french

/Thanks</description>
		<content:encoded><![CDATA[<p>Hey , pretty cool!</p>
<p>But there is a problem. If you have millions value and don&#8217;t want to show everything when you zoom in and out, i mean how could we filter out values, so it doesn&#8217;t get heavy to pan or zoom?</p>
<p>I know there is an algorithm call Douglas_Peucker for simplify lines that can be used. But don&#8217;t know how to implement it or where..<br />
How can we me make an function like google stockschart where it depends on the period you chose ?</p>
<p>Sorry my bad french</p>
<p>/Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yukti</title>
		<link>http://www.iwobanas.com/2009/08/scrolling-and-zooming-chart-with-categoryaxis/comment-page-1/#comment-648</link>
		<dc:creator>Yukti</dc:creator>
		<pubDate>Wed, 23 Jun 2010 09:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.iwobanas.com/?p=144#comment-648</guid>
		<description>Hi,
I observed that when you scroll too much the line chart is compressed and the category labels skip I mean they are displayed at intervals.How can I avoid this?

Thanks and help will be appreciated</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I observed that when you scroll too much the line chart is compressed and the category labels skip I mean they are displayed at intervals.How can I avoid this?</p>
<p>Thanks and help will be appreciated</p>
]]></content:encoded>
	</item>
</channel>
</rss>

