<?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: Flex Sparkline</title>
	<atom:link href="http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/</link>
	<description>Odds and Ends</description>
	<lastBuildDate>Sat, 11 May 2013 14:39:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Tommy Huang</title>
		<link>http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/comment-page-1/#comment-1715</link>
		<dc:creator>Tommy Huang</dc:creator>
		<pubDate>Mon, 05 Nov 2012 02:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottlogic.co.uk/blog/graham/?p=90#comment-1715</guid>
		<description><![CDATA[Hei,thank you very much! The component is very good!]]></description>
		<content:encoded><![CDATA[<p>Hei,thank you very much! The component is very good!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Updating Flex Sparkline to Flex 4 &#124; Odds On Flex</title>
		<link>http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/comment-page-1/#comment-419</link>
		<dc:creator>Updating Flex Sparkline to Flex 4 &#124; Odds On Flex</dc:creator>
		<pubDate>Wed, 20 Apr 2011 08:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottlogic.co.uk/blog/graham/?p=90#comment-419</guid>
		<description><![CDATA[[...] a previous post I presented a library [...]]]></description>
		<content:encoded><![CDATA[<p>[...] a previous post I presented a library [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham Odds</title>
		<link>http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/comment-page-1/#comment-214</link>
		<dc:creator>Graham Odds</dc:creator>
		<pubDate>Mon, 06 Dec 2010 13:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottlogic.co.uk/blog/graham/?p=90#comment-214</guid>
		<description><![CDATA[Greg,

What aspect of the article would you like to see more details on, sparklines or writing custom item renderers?

Regards,
Graham]]></description>
		<content:encoded><![CDATA[<p>Greg,</p>
<p>What aspect of the article would you like to see more details on, sparklines or writing custom item renderers?</p>
<p>Regards,<br />
Graham</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Cova</title>
		<link>http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/comment-page-1/#comment-213</link>
		<dc:creator>Greg Cova</dc:creator>
		<pubDate>Mon, 06 Dec 2010 13:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottlogic.co.uk/blog/graham/?p=90#comment-213</guid>
		<description><![CDATA[Well written article very knowledgable, is it possible, though, for you to go into more detail on this subject, I&#039;d like to learn more and think it&#039;d show up better in google (where I found this article too) if you wrote more on this. Thanks]]></description>
		<content:encoded><![CDATA[<p>Well written article very knowledgable, is it possible, though, for you to go into more detail on this subject, I&#8217;d like to learn more and think it&#8217;d show up better in google (where I found this article too) if you wrote more on this. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham Odds</title>
		<link>http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/comment-page-1/#comment-154</link>
		<dc:creator>Graham Odds</dc:creator>
		<pubDate>Mon, 16 Aug 2010 07:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottlogic.co.uk/blog/graham/?p=90#comment-154</guid>
		<description><![CDATA[Hi Jorge,
The sparkline will update automatically when its dataprovider changes.  Here is the code for artificial example shown in the article (with styling stripped out for brevity):
&lt;pre lang=&quot;xml&quot;&gt;
&lt;mx:Application
    xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
    xmlns:spark=&quot;com.scottlogic.sparkline.*&quot;
    creationComplete=&quot;initialise()&quot;
&gt;
    &lt;mx:Script&gt;
        &lt;![CDATA[
            import mx.collections.ArrayCollection;

            [Bindable]
            private var dp:ArrayCollection = new ArrayCollection();

            private var timer:Timer;

            private function initialise():void
            {
                timer = new Timer(1000);
                timer.addEventListener(TimerEvent.TIMER, onTimerTick)
                timer.start();
            }

            private function onTimerTick(event:TimerEvent):void
            {
                dp.addItem(Math.random());
            }
        ]]&gt;
    &lt;/mx:Script&gt;
    &lt;spark:Sparkline dataProvider=&quot;{dp}&quot; /&gt;
&lt;/mx:Application&gt;
&lt;/pre&gt;
Hope that helps.

Regards,
Graham]]></description>
		<content:encoded><![CDATA[<p>Hi Jorge,<br />
The sparkline will update automatically when its dataprovider changes.  Here is the code for artificial example shown in the article (with styling stripped out for brevity):</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Application</span></span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns:mx</span>=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns:spark</span>=<span style="color: #ff0000;">&quot;com.scottlogic.sparkline.*&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">creationComplete</span>=<span style="color: #ff0000;">&quot;initialise()&quot;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #339933;">&lt;![CDATA[</span>
<span style="color: #339933;">            import mx.collections.ArrayCollection;</span>
&nbsp;
<span style="color: #339933;">            [Bindable]</span>
<span style="color: #339933;">            private var dp:ArrayCollection = new ArrayCollection();</span>
&nbsp;
<span style="color: #339933;">            private var timer:Timer;</span>
&nbsp;
<span style="color: #339933;">            private function initialise():void</span>
<span style="color: #339933;">            {</span>
<span style="color: #339933;">                timer = new Timer(1000);</span>
<span style="color: #339933;">                timer.addEventListener(TimerEvent.TIMER, onTimerTick)</span>
<span style="color: #339933;">                timer.start();</span>
<span style="color: #339933;">            }</span>
&nbsp;
<span style="color: #339933;">            private function onTimerTick(event:TimerEvent):void</span>
<span style="color: #339933;">            {</span>
<span style="color: #339933;">                dp.addItem(Math.random());</span>
<span style="color: #339933;">            }</span>
<span style="color: #339933;">        ]]&gt;</span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:Script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;spark:Sparkline</span> <span style="color: #000066;">dataProvider</span>=<span style="color: #ff0000;">&quot;{dp}&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:Application<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Hope that helps.</p>
<p>Regards,<br />
Graham</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorge Flores</title>
		<link>http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/comment-page-1/#comment-153</link>
		<dc:creator>Jorge Flores</dc:creator>
		<pubDate>Fri, 13 Aug 2010 18:44:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottlogic.co.uk/blog/graham/?p=90#comment-153</guid>
		<description><![CDATA[Hola, estaba checando tu sparkline, me parece muy bueno tu ejemplo, solo una preguntame puedes pasar el codigo fuente del sparkline dinamyco ??, te lo agradeceria eternamente, pues tengo que hacer una aplicacion  Gracias.]]></description>
		<content:encoded><![CDATA[<p>Hola, estaba checando tu sparkline, me parece muy bueno tu ejemplo, solo una preguntame puedes pasar el codigo fuente del sparkline dinamyco ??, te lo agradeceria eternamente, pues tengo que hacer una aplicacion  Gracias.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Changing Flex itemRenderer at runtime &#124; Blogagic</title>
		<link>http://www.scottlogic.co.uk/blog/graham/2010/02/flex-sparkline/comment-page-1/#comment-113</link>
		<dc:creator>Changing Flex itemRenderer at runtime &#124; Blogagic</dc:creator>
		<pubDate>Sun, 30 May 2010 14:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottlogic.co.uk/blog/graham/?p=90#comment-113</guid>
		<description><![CDATA[[...] For my examples, I used a Flex Sparkline implementation provided by Graham Odds. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] For my examples, I used a Flex Sparkline implementation provided by Graham Odds. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
