<?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/"
	>

<channel>
	<title>Data Visualization News</title>
	<atom:link href="http://www.datavisualizationnews.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.datavisualizationnews.com</link>
	<description>Posts form the data visualization world</description>
	<lastBuildDate>Fri, 20 Nov 2009 16:18:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Animation, Interaction and Dynamic Excel Charts</title>
		<link>http://www.datavisualizationnews.com/?p=6</link>
		<comments>http://www.datavisualizationnews.com/?p=6#comments</comments>
		<pubDate>Fri, 20 Nov 2009 16:18:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.datavisualizationnews.com/?p=6</guid>
		<description><![CDATA[
If you want to add animation to your charts that’s a clear sign that you have too much free time. Go out and play with the kids instead.  
Yes, animation is a powerful attention-grabber, even more powerful than a glossy 3D pie chart in Crystal Xcelsius. And yes, it can actually be helpful (from [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[</p>
<p>If you want to add animation to your charts that’s a clear sign that you have too much free time. Go out and play with the kids instead. <img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
<p>Yes, animation is a powerful attention-grabber, even more powerful than a glossy 3D pie chart in Crystal Xcelsius. And yes, it can actually be helpful (from time to time). But.</p>
<p>A good example of animation in data visualization is the famous Hans Rosling’s TED presentation, where a long-term pattern is clearly seen (at min 4:00):</p>
</p>
<p>This works well because the trend is easily identifiable and you don’t care much about the details. It would be much more difficult to make sense of this data if there were multiple trends and short-term variability. (<em>More on the <a href="http://charts.jorgecamoes.com/animation-and-demographic-information-visualization/">use of animated charts</a></em>.)</p>
<p>After watching this presentation people often ask me: “Wow! Can we do that in Excel?” Wrong question. The right question would be “Wow! Can our data do that?”.</p>
<p>You can always create a simple animation in Excel but it’s hard for a non-programmer to get a smooth transition effect. Here is an example:</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_dashboard-animation.gif" alt="" /></p>
<p>Although you can see a pattern emerging, you would need to add a complex interpolation routine to make it look better (read <a href="http://peltiertech.com/WordPress/gapminder-for-excel-ii/" target="_blank">Jon’s post</a> to see how a simple interpolation can be used).</p>
<p>Animation is better used if there is a pattern to be discovered, but you need something more: the ability to interact with the data. You must be able to stop, go back, get the details. While you can create a simple animation effect with a for/next loop in VBA, interaction with the chart is much easier using a <a href="http://charts.jorgecamoes.com/google-motion-chart-api-visualization-population-trends/" target="_blank">Google spreadsheet with a motion chart</a>:</p>
<p><em>(This is just an image. Click </em><a href="http://spreadsheets.google.com/pub?key=pefjvshKHZ12bWp_VWpJjdQ" target="_blank"><em>here</em></a><em> to play with the chart.)</em></p>
<p><a href="http://spreadsheets.google.com/pub?key=pefjvshKHZ12bWp_VWpJjdQ"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_dependencies.png" alt="" /></a></p>
<h3>Dynamic Charts in Excel</h3>
<p>In Excel, instead of creating a VBA routine, consider using a scroll bar linked to the value you want to change (year, for example):</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_scrollbar-propertiesweb.png" alt="" /></p>
<p>Using a scroll bar adds some level of interaction because you can scroll back and forth, pause and examine the details for a specific year. Obviously, you need to change the chart data source dynamically.</p>
<p>Let’s recap how to create a dynamic chart in Excel. You can do it by changing values or by changing the data source itself (using a different range).</p>
<h3>Option #1: Copying the Data</h3>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_datasourceweb.png" alt="" /></p>
<p>The range A1:E11 is our data set and we are comparing regions. Moving the scroll bar at the bottom changes the year. Column F is our data source. You can enter this formula there:</p>
<p align="center">=OFFSET($A$1,ROW()-1,MATCH($A$13,$B$1:$E$1,0),1,1)</p>
<p>ROW() gets the current row and MATCH() returns the position of value 2002 (A13) in the range B1:E1. So, the formula in cell F2 reads something like this: start at A1, go down one row, go right three columns and get the data in that cell (range of width 1 and height 1). When the user selects a different year the data is copied to column F.</p>
<h3>Option #2: Using a Dynamic Named Range</h3>
<p>The second option is to create a dynamic named range. Create a named range an instead of entering a fixed range enter this formula:</p>
<p align="center">=OFFSET(Sheet1!$A$1,1,MATCH(Sheet1!$A$13,Sheet1!$B$1:$E$1,0),10,1)</p>
<p>As you can see, it is very similar to the one above, but now the number of rows down is fixed (1) and it returns a range of 10&#215;1 cells (because we have 10 regions, but if the number of regions varies you may use COUNTA(A:A)-1 to count the number of regions, excluding header – and don’t forget to move the year to a different cell…).</p>
<p>When you verify your range this is what you get:</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_dynamicrangeweb.png" alt="" /></p>
<p>You just need to use this range in your chart (when entering the range you must add the workbook name: “=Book1!SourceData&#8221;). You’ll also need a range for the category axis labels:</p>
<p align="center">=OFFSET(Sheet1!$A$1,1,0,10,1)</p>
<p>You can download the spreadsheet <a href="http://charts.jorgecamoes.com/wp-content/uploads/2009/10/dynamicchartexample.xls">here</a>.</p>
<h3>Take Aways</h3>
<p>If you want to animate your charts make sure you do it because it adds value, not because you want to show off your skills. You can do it in Excel but it looks much better in Rosling’s Trendalyzer or in the Google spreadsheet gadget.</p>
<p>To create animations your data source must change dynamically, and that requires some work (and skills). I advise you to shift your focus from animation to interaction and use all that work to design a better user experience. Do you prefer a “wow!&#8221; (animation) or a “wow, thank you!” (interaction that actually helps the user)?</p>
<p><em>(If you are interested in dynamic charts consider getting my </em><a href="http://charts.jorgecamoes.com/products/demographic-dashboard/"><em>dashboard tutorial</em></a><em>. You’ll find many examples there in the context of dashboard design and implementation.)</em></p>
<p>
<p>
______________________
</p>
<p>Want to create better dashboards? Try the <a href="http://charts.jorgecamoes.com/products/demographic-dashboard/">Excel Dashboard Tutorial</a>.
<p>
Post from: <a href="http://charts.jorgecamoes.com">Jorge Camoes&#8217; Charts</a>.<br />
<br/><br/><a href="http://charts.jorgecamoes.com/animation-interaction-and-dynamic-excel-charts/">Animation, Interaction and Dynamic Excel Charts</a></p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcharts.jorgecamoes.com%2Fanimation-interaction-and-dynamic-excel-charts%2F&amp;linkname=Animation%2C%20Interaction%20and%20Dynamic%20Excel%20Charts"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_share_save_171_16.png" width="171" height="16" alt="Share/Bookmark" /></a></p>
<p>Related posts:
<ol>
<li><a href="http://charts.jorgecamoes.com/animation-and-demographic-information-visualization/" rel="bookmark" title="Permanent Link: Animation and demographic information visualization">Animation and demographic information visualization</a></li>
<li><a href="http://charts.jorgecamoes.com/how-to-create-an-excel-dashboard/" rel="bookmark" title="Permanent Link: How to create a dashboard in Excel">How to create a dashboard in Excel</a></li>
<li><a href="http://charts.jorgecamoes.com/are-excel-charts-hurting-your-business-10-mistakes-you-should-avoid/" rel="bookmark" title="Permanent Link: Are Excel Charts Hurting Your Business? 10 Mistakes You Should Avoid.">Are Excel Charts Hurting Your Business? 10 Mistakes You Should Avoid.</a></li>
</ol>
<div>
<a href="http://feeds.feedburner.com/~ff/JCCharts?a=jvn9ioVRaEw:x1F1T9METp0:V_sGLiPBpWU"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_JCCharts?i=jvn9ioVRaEw:x1F1T9METp0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=jvn9ioVRaEw:x1F1T9METp0:gIN9vFwOqvQ"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_JCCharts?i=jvn9ioVRaEw:x1F1T9METp0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=jvn9ioVRaEw:x1F1T9METp0:yIl2AUoC8zA"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_JCCharts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=jvn9ioVRaEw:x1F1T9METp0:F7zBnMyn0Lo"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_JCCharts?i=jvn9ioVRaEw:x1F1T9METp0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=jvn9ioVRaEw:x1F1T9METp0:qj6IDK7rITs"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/15d18_JCCharts?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=jvn9ioVRaEw:x1F1T9METp0:TzevzKxY174"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/f9699_JCCharts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/f9699_jvn9ioVRaEw" height="1" width="1" /></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.datavisualizationnews.com/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Color Palettes for Your Excel Charts [Video Tutorial]</title>
		<link>http://www.datavisualizationnews.com/?p=5</link>
		<comments>http://www.datavisualizationnews.com/?p=5#comments</comments>
		<pubDate>Fri, 20 Nov 2009 16:17:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.datavisualizationnews.com/?p=5</guid>
		<description><![CDATA[
You need a better color palette for your Excel charts, but you are a mere mortal and your artistic skills are less than stellar. Hell, you can&#8217;t even choose the right tie for a suit! So, what do you do? (hint: watch the video below)
Maybe we could ask Edward Tufte for advice. In Envisioning Information, [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[</p>
<p>You need a better color palette for your Excel charts, but you are a mere mortal and your artistic skills are less than stellar. Hell, you can&#8217;t even choose the right tie for a suit! So, what do you do?<em> (hint: watch the video below)</em></p>
<p>Maybe we could ask Edward Tufte for advice. In <a href="http://www.amazon.com/gp/product/0961392118?ie=UTF8&amp;tag=jorgecamoesbi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0961392118">Envisioning Information</a><img style="border:none !important; margin:0px !important;" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/96437_ir?t=jorgecamoesbi-20&amp;l=as2&amp;o=1&amp;a=0961392118" border="0" alt="" width="1" height="1" />, he writes:</p>
<blockquote><p>What palette of colors should we choose to represent and illuminate information? A grand strategy is to <em>use colors found in nature</em> (…). Nature’s colors are familiar and coherent, possessing a widely accepted harmony to the human eye (…). A palette of nature’s colors helps suppress production of garish and content-empty chartjunk.</p>
</blockquote>
<p>Better said than done, right? Well, let me tell you a secret: it’s easier than it seems.</p>
<h3>How to create a new Excel color palette</h3>
<p>I’m going to show you how to create a palette of <em>colors found in nature</em> ( you can create a palette of colors <em>not</em> found in nature, if that suits you better). Here are the steps:</p>
<ol>
<li><strong><a href="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_3024913965_99a6a46534_m_d.jpg"><img class="alignright" title="Autumn colors" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_3024913965_99a6a46534_m_d.jpg" alt="" width="240" height="180" /></a>Select a photo you like.</strong> If you happen to live in a big city, finding nature can be challenging. Google for “[your location]+park” and you may get lucky. Go there, take some photos and download them to your computer. If that looks like a lot of work, you can try Flickr. Search for “<a rel="nofollow" href="http://www.flickr.com/search/?s=int&amp;l=cc&amp;mt=all&amp;adv=1&amp;w=all&amp;q=autumn+colors&amp;m=text#page=4">autumn colors</a>” and you’ll get some useful results. I’ve picked the one on the right;</li>
<li><strong>Upload it to an online palette generator.</strong> There are many, so choose whichever you like. I like <a rel="nofollow" href="http://www.genopal.com/pic2color">Genopal</a> because it is clean (no ads) and extracts exactly the number of colors we need (eight).</li>
<li><strong>Convert color codes to RGB.</strong> Copy the color codes to Excel and use the HEX2DEC() function to get the RGB values.</li>
<li><strong>Create the Excel palette.</strong> In Excel 2003, replace the existing colors with the new ones. In Excel 2007 create a new color theme.</li>
</ol>
<p>This is it. You can try it in your next chart.</p>
<h3>A new Excel palette: the making of</h3>
<p>If you need the details, here is a step by step tutorial:
</p>
<h3>Is this good enough?</h3>
<p>As you can see, the results are heavily dependent on the photo you choose, so you should try different photos and test the resulting palette in a chart. If you find it hard to come up with a good color scheme, you can use this method to create a basic color palette that you can tweak to meet your needs.</p>
<h3>Other Excel and Chart Color Resources</h3>
<p>Jon Peltier wrote two interesting posts about managing the Excel color palette (<a href="http://peltiertech.com/WordPress/using-colors-in-excel-charts/">here</a> and <a href="http://peltiertech.com/WordPress/excel-chart-color-update/">here</a>) and Stephen Few shares some <a href="http://www.perceptualedge.com/articles/visual_business_intelligence/rules_for_using_color.pdf">Practical Rules for Using Color in Charts</a> (PDF). Bonavista&#8217;s <a href="http://www.bonavistasystems.com/Products_ChartTamer_Overview.html">Chart Tamer</a> includes a professionally designed palette.</p>
<p><em>Photo credit: <a href="http://www.flickr.com/photos/xfp/">Xavier Fargas</a></em></p>
<p>
<p>
______________________
</p>
<p>Want to create better dashboards? Try the <a href="http://charts.jorgecamoes.com/products/demographic-dashboard/">Excel Dashboard Tutorial</a>.
<p>
Post from: <a href="http://charts.jorgecamoes.com">Jorge Camoes&#8217; Charts</a>.<br />
<br/><br/><a href="http://charts.jorgecamoes.com/better-color-palettes-for-your-excel-charts-video-tutorial/">Better Color Palettes for Your Excel Charts [Video Tutorial]</a></p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcharts.jorgecamoes.com%2Fbetter-color-palettes-for-your-excel-charts-video-tutorial%2F&amp;linkname=Better%20Color%20Palettes%20for%20Your%20Excel%20Charts%20%5BVideo%20Tutorial%5D"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_share_save_171_16.png" width="171" height="16" alt="Share/Bookmark" /></a></p>
<p>Related posts:
<ol>
<li><a href="http://charts.jorgecamoes.com/video-royksopp-remind-me/" rel="bookmark" title="Permanent Link: Video: Royksopp – Remind Me">Video: Royksopp &#8211; Remind Me</a></li>
<li><a href="http://charts.jorgecamoes.com/10-x-10-tips-to-improve-your-excel-charts-pie-charts/" rel="bookmark" title="Permanent Link: 10 x 10 Tips to improve your (Excel) charts: pie charts">10 x 10 Tips to improve your (Excel) charts: pie charts</a></li>
<li><a href="http://charts.jorgecamoes.com/10-x-10-tips-to-improve-your-excel-charts-formatting/" rel="bookmark" title="Permanent Link: 10 x 10 Tips to improve your (Excel) charts: formatting">10 x 10 Tips to improve your (Excel) charts: formatting</a></li>
</ol>
<div>
<a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:V_sGLiPBpWU"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_JCCharts?i=HxV6DZFPNCA:Vh5JYVnwiHs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:gIN9vFwOqvQ"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_JCCharts?i=HxV6DZFPNCA:Vh5JYVnwiHs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:yIl2AUoC8zA"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_JCCharts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:F7zBnMyn0Lo"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_JCCharts?i=HxV6DZFPNCA:Vh5JYVnwiHs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:qj6IDK7rITs"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_JCCharts?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:TzevzKxY174"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_JCCharts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/50258_HxV6DZFPNCA" height="1" width="1" /></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.datavisualizationnews.com/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Color Palettes for Your Excel Charts [Video Tutorial]</title>
		<link>http://www.datavisualizationnews.com/?p=4</link>
		<comments>http://www.datavisualizationnews.com/?p=4#comments</comments>
		<pubDate>Fri, 20 Nov 2009 16:17:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.datavisualizationnews.com/?p=4</guid>
		<description><![CDATA[
You need a better color palette for your Excel charts, but you are a mere mortal and your artistic skills are less than stellar. Hell, you can&#8217;t even choose the right tie for a suit! So, what do you do? (hint: watch the video below)
Maybe we could ask Edward Tufte for advice. In Envisioning Information, [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[</p>
<p>You need a better color palette for your Excel charts, but you are a mere mortal and your artistic skills are less than stellar. Hell, you can&#8217;t even choose the right tie for a suit! So, what do you do?<em> (hint: watch the video below)</em></p>
<p>Maybe we could ask Edward Tufte for advice. In <a href="http://www.amazon.com/gp/product/0961392118?ie=UTF8&amp;tag=jorgecamoesbi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0961392118">Envisioning Information</a><img style="border:none !important; margin:0px !important;" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/71df9_ir?t=jorgecamoesbi-20&amp;l=as2&amp;o=1&amp;a=0961392118" border="0" alt="" width="1" height="1" />, he writes:</p>
<blockquote><p>What palette of colors should we choose to represent and illuminate information? A grand strategy is to <em>use colors found in nature</em> (…). Nature’s colors are familiar and coherent, possessing a widely accepted harmony to the human eye (…). A palette of nature’s colors helps suppress production of garish and content-empty chartjunk.</p>
</blockquote>
<p>Better said than done, right? Well, let me tell you a secret: it’s easier than it seems.</p>
<h3>How to create a new Excel color palette</h3>
<p>I’m going to show you how to create a palette of <em>colors found in nature</em> ( you can create a palette of colors <em>not</em> found in nature, if that suits you better). Here are the steps:</p>
<ol>
<li><strong><a href="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_3024913965_99a6a46534_m_d.jpg"><img class="alignright" title="Autumn colors" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_3024913965_99a6a46534_m_d.jpg" alt="" width="240" height="180" /></a>Select a photo you like.</strong> If you happen to live in a big city, finding nature can be challenging. Google for “[your location]+park” and you may get lucky. Go there, take some photos and download them to your computer. If that looks like a lot of work, you can try Flickr. Search for “<a rel="nofollow" href="http://www.flickr.com/search/?s=int&amp;l=cc&amp;mt=all&amp;adv=1&amp;w=all&amp;q=autumn+colors&amp;m=text#page=4">autumn colors</a>” and you’ll get some useful results. I’ve picked the one on the right;</li>
<li><strong>Upload it to an online palette generator.</strong> There are many, so choose whichever you like. I like <a rel="nofollow" href="http://www.genopal.com/pic2color">Genopal</a> because it is clean (no ads) and extracts exactly the number of colors we need (eight).</li>
<li><strong>Convert color codes to RGB.</strong> Copy the color codes to Excel and use the HEX2DEC() function to get the RGB values.</li>
<li><strong>Create the Excel palette.</strong> In Excel 2003, replace the existing colors with the new ones. In Excel 2007 create a new color theme.</li>
</ol>
<p>This is it. You can try it in your next chart.</p>
<h3>A new Excel palette: the making of</h3>
<p>If you need the details, here is a step by step tutorial:
</p>
<h3>Is this good enough?</h3>
<p>As you can see, the results are heavily dependent on the photo you choose, so you should try different photos and test the resulting palette in a chart. If you find it hard to come up with a good color scheme, you can use this method to create a basic color palette that you can tweak to meet your needs.</p>
<h3>Other Excel and Chart Color Resources</h3>
<p>Jon Peltier wrote two interesting posts about managing the Excel color palette (<a href="http://peltiertech.com/WordPress/using-colors-in-excel-charts/">here</a> and <a href="http://peltiertech.com/WordPress/excel-chart-color-update/">here</a>) and Stephen Few shares some <a href="http://www.perceptualedge.com/articles/visual_business_intelligence/rules_for_using_color.pdf">Practical Rules for Using Color in Charts</a> (PDF). Bonavista&#8217;s <a href="http://www.bonavistasystems.com/Products_ChartTamer_Overview.html">Chart Tamer</a> includes a professionally designed palette.</p>
<p><em>Photo credit: <a href="http://www.flickr.com/photos/xfp/">Xavier Fargas</a></em></p>
<p>
<p>
______________________
</p>
<p>Want to create better dashboards? Try the <a href="http://charts.jorgecamoes.com/products/demographic-dashboard/">Excel Dashboard Tutorial</a>.
<p>
Post from: <a href="http://charts.jorgecamoes.com">Jorge Camoes&#8217; Charts</a>.<br />
<br/><br/><a href="http://charts.jorgecamoes.com/better-color-palettes-for-your-excel-charts-video-tutorial/">Better Color Palettes for Your Excel Charts [Video Tutorial]</a></p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcharts.jorgecamoes.com%2Fbetter-color-palettes-for-your-excel-charts-video-tutorial%2F&amp;linkname=Better%20Color%20Palettes%20for%20Your%20Excel%20Charts%20%5BVideo%20Tutorial%5D"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_share_save_171_16.png" width="171" height="16" alt="Share/Bookmark" /></a></p>
<p>Related posts:
<ol>
<li><a href="http://charts.jorgecamoes.com/video-royksopp-remind-me/" rel="bookmark" title="Permanent Link: Video: Royksopp – Remind Me">Video: Royksopp &#8211; Remind Me</a></li>
<li><a href="http://charts.jorgecamoes.com/10-x-10-tips-to-improve-your-excel-charts-pie-charts/" rel="bookmark" title="Permanent Link: 10 x 10 Tips to improve your (Excel) charts: pie charts">10 x 10 Tips to improve your (Excel) charts: pie charts</a></li>
<li><a href="http://charts.jorgecamoes.com/10-x-10-tips-to-improve-your-excel-charts-formatting/" rel="bookmark" title="Permanent Link: 10 x 10 Tips to improve your (Excel) charts: formatting">10 x 10 Tips to improve your (Excel) charts: formatting</a></li>
</ol>
<div>
<a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:V_sGLiPBpWU"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_JCCharts?i=HxV6DZFPNCA:Vh5JYVnwiHs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:gIN9vFwOqvQ"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_JCCharts?i=HxV6DZFPNCA:Vh5JYVnwiHs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:yIl2AUoC8zA"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_JCCharts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:F7zBnMyn0Lo"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_JCCharts?i=HxV6DZFPNCA:Vh5JYVnwiHs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:qj6IDK7rITs"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_JCCharts?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=HxV6DZFPNCA:Vh5JYVnwiHs:TzevzKxY174"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/45ee9_JCCharts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/9b826_HxV6DZFPNCA" height="1" width="1" /></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.datavisualizationnews.com/?feed=rss2&amp;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cooking Better Charts</title>
		<link>http://www.datavisualizationnews.com/?p=3</link>
		<comments>http://www.datavisualizationnews.com/?p=3#comments</comments>
		<pubDate>Fri, 20 Nov 2009 16:16:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.datavisualizationnews.com/?p=3</guid>
		<description><![CDATA[
I don’t know how to cook and, frankly, I don’t want to learn. But my wife is coming late from work, I’m tired of take-away food and we must feed the kids. So I guess I have to add cooking to my daily routine.
 Here in Europe, Thermomix (also known as “Bimby”) is a very [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[</p>
<p>I don’t know how to cook and, frankly, I don’t want to learn. But my wife is coming late from work, I’m tired of take-away food and we must feed the kids. So I guess I have to add cooking to my daily routine.</p>
<p><img style="margin: 0px 0px 0px 10px; display: inline" src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/fcc5a_2732448074_a17b4f54f8_m_d.jpg" alt="" align="right" /> Here in Europe, <a rel="nofollow" href="http://www.vorwerk.com/thermomix/html/" target="_blank">Thermomix</a> (also known as “Bimby”) is a very popular kitchen appliance (specially among men, so I’m told). You just add ingredients, press three buttons (temperature, speed and time) <em>et voilà</em>, diner is ready (sort of). Follow the recipe  and what you get what you expect. That’s good enough for me.</p>
<p>This is a gadget most people love or hate. A friend of mine hates it and tried to persuade me that I should learn how to cook using the traditional pots and pans. Only ill-informed people buys it, he says.</p>
<p>Yes, but he’s single. No kids, no blog, loves to cook. How can he possibly understand my motives? I just want to get this thing done with minimal fuss, no random results, small learning curve. Some good templates, that’s all I want.</p>
<p>I had to buy one. I just did.</p>
<h3>OK, but what about making better charts?</h3>
<p>Apparently, most people love making charts as much as I love cooking. Even if they need them on a daily basis, there are so many things fighting for their attention that the need for a better data visualization can easily be overlooked and pushed to the bottom of their list.</p>
<p>Junk food, junk charts. Some times it’s great fun to use them. And it’s very easy to take them for real food, real charts. But they are unhealthy, and if you use them often you and your business will pay a price, sooner or later.</p>
<p>It’s not about food or charts, it’s about business and personal health (or wellness). You don’t have to know the details, you don’t have to know how to use the tools. But you have to have some kind of framework to guide you. Fat is bad, sugar is bad, 3D effects are bad. Then you need to find some templates that implement that framework and tools that use them by default.</p>
<p>We played with the machine over the weekend and I&#8217;ve very pleased with the results. We eat better than we usually do and saved money and time. Not bad. Now, do yourself a favor and find your own charting machine. If you’ll excuse me, mine is calling me. Dinner is ready.</p>
<p>
<p>
______________________
</p>
<p>Want to create better dashboards? Try the <a href="http://charts.jorgecamoes.com/products/demographic-dashboard/">Excel Dashboard Tutorial</a>.
<p>
Post from: <a href="http://charts.jorgecamoes.com">Jorge Camoes&#8217; Charts</a>.<br />
<br/><br/><a href="http://charts.jorgecamoes.com/cooking-better-chart/">Cooking Better Charts</a></p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcharts.jorgecamoes.com%2Fcooking-better-chart%2F&amp;linkname=Cooking%20Better%20Charts"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/fcc5a_share_save_171_16.png" width="171" height="16" alt="Share/Bookmark" /></a></p>
<p>No related posts.</p>
<div>
<a href="http://feeds.feedburner.com/~ff/JCCharts?a=mtQWhm5c79Y:u1VwEun1fcA:V_sGLiPBpWU"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/fcc5a_JCCharts?i=mtQWhm5c79Y:u1VwEun1fcA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=mtQWhm5c79Y:u1VwEun1fcA:gIN9vFwOqvQ"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/be718_JCCharts?i=mtQWhm5c79Y:u1VwEun1fcA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=mtQWhm5c79Y:u1VwEun1fcA:yIl2AUoC8zA"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/be718_JCCharts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=mtQWhm5c79Y:u1VwEun1fcA:F7zBnMyn0Lo"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/be718_JCCharts?i=mtQWhm5c79Y:u1VwEun1fcA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=mtQWhm5c79Y:u1VwEun1fcA:qj6IDK7rITs"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/be718_JCCharts?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JCCharts?a=mtQWhm5c79Y:u1VwEun1fcA:TzevzKxY174"><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/be718_JCCharts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.datavisualizationnews.com/wp-content/plugins/wp-o-matic/cache/be718_mtQWhm5c79Y" height="1" width="1" /></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.datavisualizationnews.com/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
