<?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: Animating a Flex PieChart control&#8217;s rotation when a user clicks on an item</title>
	<atom:link href="http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Mon, 22 Mar 2010 05:11:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kiran</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1994</link>
		<dc:creator>Kiran</dc:creator>
		<pubDate>Fri, 17 Apr 2009 15:54:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1994</guid>
		<description>Hi Peter , Excellent
It saved my time a lot .
But If you have some time , Could you please provide the same impact for the combo box event  . I mean to say I have a combobox with Product 1, Product 2 .... . If I select any product , it should get react exactly the same whatever you did.

Thanks again for your help
Regards
Kiran</description>
		<content:encoded><![CDATA[<p>Hi Peter , Excellent<br />
It saved my time a lot .<br />
But If you have some time , Could you please provide the same impact for the combo box event  . I mean to say I have a combobox with Product 1, Product 2 &#8230;. . If I select any product , it should get react exactly the same whatever you did.</p>
<p>Thanks again for your help<br />
Regards<br />
Kiran</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vitoto</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1993</link>
		<dc:creator>Vitoto</dc:creator>
		<pubDate>Sat, 28 Mar 2009 03:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1993</guid>
		<description>Hi, is posible show simbol % inside the PIE area.

Example 10%, 50%, etc .. ??</description>
		<content:encoded><![CDATA[<p>Hi, is posible show simbol % inside the PIE area.</p>
<p>Example 10%, 50%, etc .. ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anand singh</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1996</link>
		<dc:creator>anand singh</dc:creator>
		<pubDate>Fri, 02 Jan 2009 07:58:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1996</guid>
		<description>thank to you

I have find a solution for pie chart by your help.</description>
		<content:encoded><![CDATA[<p>thank to you</p>
<p>I have find a solution for pie chart by your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1995</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 08 Dec 2008 02:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1995</guid>
		<description>@ David: Just call the dataprovider in the script.

here an example:

piechart0.dataProvider=e.result;

This line i call after my remotedataobject is loaded.

in remoteobject:
&lt;mx:method name=&quot;getStatistics&quot; result=&quot;getStatisticresults( event );&quot; /&gt;

The Function getStatisticresults:

private function getStatisticresults(e:ResultEvent):void {
  piechart0.dataProvider=e.result;
}
-----
showDataEffect=&quot;seriesInterpolate&quot; help you to see a nice reload-animation (&lt;mx:PieSeries ...)

&lt;mx:SeriesInterpolate id=&quot;seriesInterpolate&quot; duration=&quot;1500&quot; /&gt;


Best Regards from Austria
Alex</description>
		<content:encoded><![CDATA[<p>@ David: Just call the dataprovider in the script.</p>
<p>here an example:</p>
<p>piechart0.dataProvider=e.result;</p>
<p>This line i call after my remotedataobject is loaded.</p>
<p>in remoteobject:<br />
&lt;mx:method name=&#8221;getStatistics&#8221; result=&#8221;getStatisticresults( event );&#8221; /&gt;</p>
<p>The Function getStatisticresults:</p>
<p>private function getStatisticresults(e:ResultEvent):void {<br />
  piechart0.dataProvider=e.result;<br />
}<br />
&#8212;&#8211;<br />
showDataEffect=&#8221;seriesInterpolate&#8221; help you to see a nice reload-animation (&lt;mx:PieSeries &#8230;)</p>
<p>&lt;mx:SeriesInterpolate id=&#8221;seriesInterpolate&#8221; duration=&#8221;1500&#8243; /&gt;</p>
<p>Best Regards from Austria<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Beckwith</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1992</link>
		<dc:creator>David Beckwith</dc:creator>
		<pubDate>Sun, 27 Jul 2008 11:09:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1992</guid>
		<description>Hi,
  I love this example.  Thanks a lot!  However, I have a question.  When I changed the data provider to be XML from a server call, dp.refresh() was no longer defined.  What&#039;s the equivalent of refresh() for XML?  I suspect that some redisplay event is being called.  And now that I can&#039;t redisplay my data, the piechart is not spinning anymore.
  Thank you,
  David :)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
  I love this example.  Thanks a lot!  However, I have a question.  When I changed the data provider to be XML from a server call, dp.refresh() was no longer defined.  What&#8217;s the equivalent of refresh() for XML?  I suspect that some redisplay event is being called.  And now that I can&#8217;t redisplay my data, the piechart is not spinning anymore.<br />
  Thank you,<br />
  David :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raghavendra</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1991</link>
		<dc:creator>Raghavendra</dc:creator>
		<pubDate>Thu, 05 Jun 2008 09:51:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1991</guid>
		<description>Dear peterd,

Its very good example which helped me a lot and I am a very beginner to this and i started doing this flex charts using php mysql and outputting this as xml data but it could not able to do that could u help me out on this....</description>
		<content:encoded><![CDATA[<p>Dear peterd,</p>
<p>Its very good example which helped me a lot and I am a very beginner to this and i started doing this flex charts using php mysql and outputting this as xml data but it could not able to do that could u help me out on this&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1990</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Wed, 20 Feb 2008 16:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1990</guid>
		<description>fidi,

There aren&#039;t any external XML files. The chart uses an mx:XMLListCollection as a data provider. All the required code should either be posted above, or you can right-click the Flex SWF and select &quot;View Source&quot; from the context menu.

Peter</description>
		<content:encoded><![CDATA[<p>fidi,</p>
<p>There aren&#8217;t any external XML files. The chart uses an mx:XMLListCollection as a data provider. All the required code should either be posted above, or you can right-click the Flex SWF and select &#8220;View Source&#8221; from the context menu.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fidi</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1989</link>
		<dc:creator>fidi</dc:creator>
		<pubDate>Wed, 20 Feb 2008 11:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1989</guid>
		<description>Amazing, i have a request, beside the source code can you give me the xml files ? i mean the data of the chart.</description>
		<content:encoded><![CDATA[<p>Amazing, i have a request, beside the source code can you give me the xml files ? i mean the data of the chart.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/comment-page-1/#comment-1988</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Fri, 23 Nov 2007 13:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/22/animating-a-flex-piechart-controls-rotation-when-a-user-clicks-on-an-item/#comment-1988</guid>
		<description>Very Cool! I did notice that depending on where you click and after the animation the datatip is not updated and hovers over the wrong piece of pie.

Neat effect though.</description>
		<content:encoded><![CDATA[<p>Very Cool! I did notice that depending on where you click and after the animation the datatip is not updated and hovers over the wrong piece of pie.</p>
<p>Neat effect though.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
