<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<channel>
	<title>Solution Hacker &#187; google finance</title>
	<atom:link href="http://www.solutionhacker.com/tag/google-finance/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.solutionhacker.com</link>
	<description>This blog provides solutions for enterpreneurs!</description>
	<lastBuildDate>Mon, 06 Feb 2012 07:19:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=433</generator>
<!-- podcast_generator="Blubrry PowerPress/2.0.4" -->
	<itunes:summary>This blog provides solutions for enterpreneurs!</itunes:summary>
	<itunes:author>Solution Hacker</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.solutionhacker.com/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>This blog provides solutions for enterpreneurs!</itunes:subtitle>
	<image>
		<title>Solution Hacker &#187; google finance</title>
		<url>http://www.solutionhacker.com/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://www.solutionhacker.com</link>
	</image>
		<item>
		<title>Flex Annotated Charting</title>
		<link>http://www.solutionhacker.com/data-intelligence/report/flex-annotated-charting/</link>
		<comments>http://www.solutionhacker.com/data-intelligence/report/flex-annotated-charting/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 23:02:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Report]]></category>
		<category><![CDATA[annotation]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[google finance]]></category>
		<category><![CDATA[line chart]]></category>
		<category><![CDATA[range selector]]></category>

		<guid isPermaLink="false">http://www.solutionhacker.com/?p=201</guid>
		<description><![CDATA[<p>Recently, I want to extend the LineChart in Flex. I want to have line chart with event annotated like Google Finance.</p>
<div align="center"><a href="http://meutzner.com/examples/flex_finance/Flex_Finance_Step5.html" target="_blank">  <img border="0" alt="" src="http://meutzner.com/examples/flex_finance/flex_finance.jpg" /></a></div>
<div align="center">&#160;</div>
<div style="text-align: left;">First of all, I googled the Net to see whether anyone had already done it. It was even better if I could find any open source project related to this. Below are the interesting things I found:</div>
<ol>
    <li><a href="http://www.djindexes.com/DJIA110/learning-center/">Dow Jone Interactive Chart </a>(commerical - it is exactly what I am looking for)</li>
    <li><a href="http://demo.quietlyscheming.com/InteractiveBubble/InteractiveBubble.html">Interactive Bubble Chart</a> (open - although it is not exactly want I want, but if I believe the code can benefit me if I need to customize line chart. <img src="../../../../../wp-includes/images/smilies/icon_cool.gif" alt=":cool:" onclick="grin(':cool:');" /> I may just need to draw the interactive small bubble on the line to get my job done!)</li>
    <li>This <a href="http://demo.quietlyscheming.com/ChartSampler/app.html">demo </a>gives you tons of chart samples. They are all great example although none of them satisfy my current need.</li>
    <li>This <a href="http://www.stretchmedia.ca/blog/index.cfm/2007/3/28/Chart-Milestones-using-annotationElements">demo </a>is close to what I want. From this demo, I notice I can use "<strong>annotationElement</strong>" to draw on top of the data series. However, the trick is to convert the data points to pixel coordinate in order for me to draw something that can move along with the graph even someone stretches it. To make thing easier, Ely Greenfield has created <strong>DataDrawingCanvas </strong>that helps us draw on the chart with only data points specified instead of pixel coordinates. This class extends the <strong>ChartElement </strong>like <strong>AnnotationElement </strong>does (<a href="http://www.quietlyscheming.com/blog/charts/easy-custom-charts/">blog</a>). That is amazing!! Thanks!!! <img onclick="grin(':smile:');" alt=":smile:" src="../../../../../wp-includes/images/smilies/icon_smile.gif" /></li>
    <li><a href="http://meutzner.com/examples/flex_finance/Flex_Finance_Step5.html">Google Finance Chart</a> (It is exactly what I want. I wonder I can get the source of it)<br />
    <ul>
        <li>I have found the blog and <a href="http://meutzner.com/examples/flex_finance/Flex Finance PPT.ppt">powerpoint </a>of this sample (1/7/2009)</li>
        <li>Google uses the Flash/ JavaScript integrate kit to get it works (<a href="http://www.mikechambers.com/blog/2006/03/21/google-finance-flash-ajax-integration/">blog</a>) - I heard that it is very nice combination of Flash and AJAX. This is similar to <a href="http://www.measuremap.com/">MeasureMap</a>'s use of the kit.</li>
        <li>It is open source example!!! (<a href="http://www.meutzner.com/blog/attachments/360/srcview/index.html">code</a>). Thanks for Brendan Meutzner!!</li>
        <li>Brendan also shows us how he created his demo in 5 steps to help us understand how to build it ourselves.</li>
        <li><a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step1.html">Step 1</a>, <a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step2.html">Step 2</a>, <a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step3.html">Step 3</a>, <a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step4.html">Step 4</a>, <a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step5.html">Step 5</a> - enjoy!!</li>
    </ul>
    </li>
</ol>
<h2>Reference</h2>
<p>Useful resources:</p>
<ol>
    <li><a href="http://tv.adobe.com/#vi+f15384v1024">Data Visualization by Tom Gonzalez</a>. (Tom created an open source visualization framework named Axiis. It looks great. Once I get a chance, I will dig into it) - 7/31/2009</li>
    <li><a href="http://www.onflex.org/ACDS/BuildingAFlexComponent.pdf">Building a Flex Component</a> by Ely GreenField</li>
    <li><a href="http://www.adobe.com/devnet/flex/articles/components_separation.html">Create component and enforce separation of concern</a></li>
    <li><a href="http://www.edwardtufte.com/tufte/">http://www.edwardtufte.com/tufte/ </a>(Edward Tufte - famous guy in data visualization)</li>
    <li><a href="http://www.insideria.com/2008/03/image-manipulation-in-flex.html">http://www.insideria.com/2008/03/image-manipulation-in-flex.html</a> (Image Manipulation)</li>
</ol>
<p>&#160;</p>]]></description>
			<content:encoded><![CDATA[<p>Recently, I want to extend the LineChart in Flex. I want to have line chart with event annotated like Google Finance.</p>
<div align="center"><a href="http://meutzner.com/examples/flex_finance/Flex_Finance_Step5.html" target="_blank">  <img border="0" alt="" src="http://meutzner.com/examples/flex_finance/flex_finance.jpg" /></a></div>
<div align="center">&#160;</div>
<div style="text-align: left;">First of all, I googled the Net to see whether anyone had already done it. It was even better if I could find any open source project related to this. Below are the interesting things I found:</div>
<ol>
<li><a href="http://www.djindexes.com/DJIA110/learning-center/">Dow Jone Interactive Chart </a>(commerical &#8211; it is exactly what I am looking for)</li>
<li><a href="http://demo.quietlyscheming.com/InteractiveBubble/InteractiveBubble.html">Interactive Bubble Chart</a> (open &#8211; although it is not exactly want I want, but if I believe the code can benefit me if I need to customize line chart. <img src="../../../../../wp-includes/images/smilies/icon_cool.gif" alt=":cool:" onclick="grin(':cool:');" /> I may just need to draw the interactive small bubble on the line to get my job done!)</li>
<li>This <a href="http://demo.quietlyscheming.com/ChartSampler/app.html">demo </a>gives you tons of chart samples. They are all great example although none of them satisfy my current need.</li>
<li>This <a href="http://www.stretchmedia.ca/blog/index.cfm/2007/3/28/Chart-Milestones-using-annotationElements">demo </a>is close to what I want. From this demo, I notice I can use &#8220;<strong>annotationElement</strong>&#8221; to draw on top of the data series. However, the trick is to convert the data points to pixel coordinate in order for me to draw something that can move along with the graph even someone stretches it. To make thing easier, Ely Greenfield has created <strong>DataDrawingCanvas </strong>that helps us draw on the chart with only data points specified instead of pixel coordinates. This class extends the <strong>ChartElement </strong>like <strong>AnnotationElement </strong>does (<a href="http://www.quietlyscheming.com/blog/charts/easy-custom-charts/">blog</a>). That is amazing!! Thanks!!! <img onclick="grin(':smile:');" alt=":smile:" src="../../../../../wp-includes/images/smilies/icon_smile.gif" /></li>
<li><a href="http://meutzner.com/examples/flex_finance/Flex_Finance_Step5.html">Google Finance Chart</a> (It is exactly what I want. I wonder I can get the source of it)
<ul>
<li>I have found the blog and <a href="http://meutzner.com/examples/flex_finance/Flex Finance PPT.ppt">powerpoint </a>of this sample (1/7/2009)</li>
<li>Google uses the Flash/ JavaScript integrate kit to get it works (<a href="http://www.mikechambers.com/blog/2006/03/21/google-finance-flash-ajax-integration/">blog</a>) &#8211; I heard that it is very nice combination of Flash and AJAX. This is similar to <a href="http://www.measuremap.com/">MeasureMap</a>&#8216;s use of the kit.</li>
<li>It is open source example!!! (<a href="http://www.meutzner.com/blog/attachments/360/srcview/index.html">code</a>). Thanks for Brendan Meutzner!!</li>
<li>Brendan also shows us how he created his demo in 5 steps to help us understand how to build it ourselves.</li>
<li><a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step1.html">Step 1</a>, <a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step2.html">Step 2</a>, <a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step3.html">Step 3</a>, <a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step4.html">Step 4</a>, <a href="http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step5.html">Step 5</a> &#8211; enjoy!!</li>
</ul>
</li>
</ol>
<h2>Reference</h2>
<p>Useful resources:</p>
<ol>
<li><a href="http://tv.adobe.com/#vi+f15384v1024">Data Visualization by Tom Gonzalez</a>. (Tom created an open source visualization framework named Axiis. It looks great. Once I get a chance, I will dig into it) &#8211; 7/31/2009</li>
<li><a href="http://www.onflex.org/ACDS/BuildingAFlexComponent.pdf">Building a Flex Component</a> by Ely GreenField</li>
<li><a href="http://www.adobe.com/devnet/flex/articles/components_separation.html">Create component and enforce separation of concern</a></li>
<li><a href="http://www.edwardtufte.com/tufte/">http://www.edwardtufte.com/tufte/ </a>(Edward Tufte &#8211; famous guy in data visualization)</li>
<li><a href="http://www.insideria.com/2008/03/image-manipulation-in-flex.html">http://www.insideria.com/2008/03/image-manipulation-in-flex.html</a> (Image Manipulation)</li>
</ol>
<p>&#160;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solutionhacker.com/data-intelligence/report/flex-annotated-charting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

