<?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: Black &amp; White Charts</title>
	<atom:link href="http://www.excelcharts.com/blog/black-white-charts/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.excelcharts.com/blog/black-white-charts/</link>
	<description>Effective Charts and Dashboards for Excel users</description>
	<lastBuildDate>Fri, 03 Feb 2012 17:31:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Mark Drew</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-47912</link>
		<dc:creator>Mark Drew</dc:creator>
		<pubDate>Wed, 21 Sep 2011 17:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-47912</guid>
		<description>so how does one find black and what chart bar options for excel that can be used in a publication rather than pretty colors for a ppt presentation</description>
		<content:encoded><![CDATA[<p>so how does one find black and what chart bar options for excel that can be used in a publication rather than pretty colors for a ppt presentation</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marit</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-33926</link>
		<dc:creator>Marit</dc:creator>
		<pubDate>Wed, 16 Feb 2011 09:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-33926</guid>
		<description>Hi Jorge! 
Thank you! This seems like the correct track... But I get some bug errors (Run-time error 1004, Unable to get ChartObjects property of the Chart class). And when I choose debug, the line starting with ActiveSheet is highlighted.  
The chart type is &quot;4-xLine&quot; and it runs in columns not in rows (from B to CX) and with 2600 lines. So I changed the first lines to:

For i = B To CX (Which runs fine apparently)
ActiveSheet.ChartObjects(&quot;Chart2&quot;).Activate 

But as this is the first time I use macros I&#039;m at a loss for what to change to fix the problem. Can you help??

Thanks a lot!
Marit</description>
		<content:encoded><![CDATA[<p>Hi Jorge!<br />
Thank you! This seems like the correct track&#8230; But I get some bug errors (Run-time error 1004, Unable to get ChartObjects property of the Chart class). And when I choose debug, the line starting with ActiveSheet is highlighted.<br />
The chart type is &#8220;4-xLine&#8221; and it runs in columns not in rows (from B to CX) and with 2600 lines. So I changed the first lines to:</p>
<p>For i = B To CX (Which runs fine apparently)<br />
ActiveSheet.ChartObjects(&#8220;Chart2&#8243;).Activate </p>
<p>But as this is the first time I use macros I&#8217;m at a loss for what to change to fix the problem. Can you help??</p>
<p>Thanks a lot!<br />
Marit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorge Camoes</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-33830</link>
		<dc:creator>Jorge Camoes</dc:creator>
		<pubDate>Tue, 15 Feb 2011 14:49:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-33830</guid>
		<description>Marit: that&#039;s what VBA if for! I just recorded this macro:

&lt;code&gt;
Sub Macro1()

For i = 1 To 4
    ActiveSheet.ChartObjects(&quot;Chart 1&quot;).Activate
    ActiveChart.SeriesCollection(i).Select
    With Selection.Border
        .ColorIndex = 1
        .Weight = xlMedium
        .LineStyle = xlContinuous
    End With
    With Selection
        .MarkerBackgroundColorIndex = xlNone
        .MarkerForegroundColorIndex = xlNone
        .MarkerStyle = xlNone
        .Smooth = False
        .MarkerSize = 3
        .Shadow = False
    End With
    
Next i
End Sub
&lt;/code&gt;

Then I added the loop For... Next. Instead of 4, use the number of series you have (200?).  I changed line style to    .LineStyle = xlContinuous but you can remove that line of code.

So, go to Tools / Macros / Visual Basic Editor. Then Insert/Module and copy this macro. Change the chart name if you have to.

Hope this helps...</description>
		<content:encoded><![CDATA[<p>Marit: that&#8217;s what VBA if for! I just recorded this macro:</p>
<p><code><br />
Sub Macro1()</p>
<p>For i = 1 To 4<br />
    ActiveSheet.ChartObjects("Chart 1").Activate<br />
    ActiveChart.SeriesCollection(i).Select<br />
    With Selection.Border<br />
        .ColorIndex = 1<br />
        .Weight = xlMedium<br />
        .LineStyle = xlContinuous<br />
    End With<br />
    With Selection<br />
        .MarkerBackgroundColorIndex = xlNone<br />
        .MarkerForegroundColorIndex = xlNone<br />
        .MarkerStyle = xlNone<br />
        .Smooth = False<br />
        .MarkerSize = 3<br />
        .Shadow = False<br />
    End With</p>
<p>Next i<br />
End Sub<br />
</code></p>
<p>Then I added the loop For&#8230; Next. Instead of 4, use the number of series you have (200?).  I changed line style to    .LineStyle = xlContinuous but you can remove that line of code.</p>
<p>So, go to Tools / Macros / Visual Basic Editor. Then Insert/Module and copy this macro. Change the chart name if you have to.</p>
<p>Hope this helps&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marit</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-33827</link>
		<dc:creator>Marit</dc:creator>
		<pubDate>Tue, 15 Feb 2011 14:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-33827</guid>
		<description>I see this post hasn&#039;t been active in a while but I try anyway... Do you know if there is a possibility to make  the an excel line graph default solid black lines on white background? I have over 200 lines in my graph so to sit and click on each one to change from the default rainbow palette  with and without dotted lines feels just stupid and time consuming... Not to mention that I probably have to change things a few times and have to do the whole procedure again! Frustration at maximum!</description>
		<content:encoded><![CDATA[<p>I see this post hasn&#8217;t been active in a while but I try anyway&#8230; Do you know if there is a possibility to make  the an excel line graph default solid black lines on white background? I have over 200 lines in my graph so to sit and click on each one to change from the default rainbow palette  with and without dotted lines feels just stupid and time consuming&#8230; Not to mention that I probably have to change things a few times and have to do the whole procedure again! Frustration at maximum!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-918</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 22 Feb 2009 23:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-918</guid>
		<description>@Ivan: Doesn&#039;t have to be black and white. You can use several shades of gray, and that&#039;s a good start.</description>
		<content:encoded><![CDATA[<p>@Ivan: Doesn&#8217;t have to be black and white. You can use several shades of gray, and that&#8217;s a good start.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan Kowitz</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-917</link>
		<dc:creator>Ivan Kowitz</dc:creator>
		<pubDate>Mon, 16 Feb 2009 23:26:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-917</guid>
		<description>Useless. How to create a chart with all black-and-white series in Excel 2007?</description>
		<content:encoded><![CDATA[<p>Useless. How to create a chart with all black-and-white series in Excel 2007?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-916</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 20 Jan 2009 16:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-916</guid>
		<description>@Bernard: Great comment, thanks. Color should be used functionally and perhaps symbolically, not to prettify. That&#039;s not always possible, but it should be our goal.</description>
		<content:encoded><![CDATA[<p>@Bernard: Great comment, thanks. Color should be used functionally and perhaps symbolically, not to prettify. That&#8217;s not always possible, but it should be our goal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-915</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 20 Jan 2009 16:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-915</guid>
		<description>@Rene: Let&#039;s say this is not a post, just a quick reminder of what the day is today. Normal program will resume in a few moments...</description>
		<content:encoded><![CDATA[<p>@Rene: Let&#8217;s say this is not a post, just a quick reminder of what the day is today. Normal program will resume in a few moments&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernard Lebelle</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-914</link>
		<dc:creator>Bernard Lebelle</dc:creator>
		<pubDate>Tue, 20 Jan 2009 15:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-914</guid>
		<description>To color or not to color… another fundamental question when designing graph.
I do agree that black &amp; white is an interesting option has it allow for minimum fuzz and should prevent the adoption of inappropriate default themes and color option.

Opting to use grey for all non essential data series allows the use of black to single out one data series in particular. Using thickness can also enhance precognitive identification and facilitate visual comparison.

As to why and how we should use color (taking into consideration that a small portion of the population is colorblind) in would recommend have a look at Cindy Brewers “Color Brewer”. She describes the use of color to carry information on different scales (Binary / Ordinal / Sequential / Diverging).

On top of this, we could also consider the notion of creating a balanced color palette.

With all this in mind, one has to devote enough time to try different schemes and identify the most appropriate and efficient graphs color options.</description>
		<content:encoded><![CDATA[<p>To color or not to color… another fundamental question when designing graph.<br />
I do agree that black &amp; white is an interesting option has it allow for minimum fuzz and should prevent the adoption of inappropriate default themes and color option.</p>
<p>Opting to use grey for all non essential data series allows the use of black to single out one data series in particular. Using thickness can also enhance precognitive identification and facilitate visual comparison.</p>
<p>As to why and how we should use color (taking into consideration that a small portion of the population is colorblind) in would recommend have a look at Cindy Brewers “Color Brewer”. She describes the use of color to carry information on different scales (Binary / Ordinal / Sequential / Diverging).</p>
<p>On top of this, we could also consider the notion of creating a balanced color palette.</p>
<p>With all this in mind, one has to devote enough time to try different schemes and identify the most appropriate and efficient graphs color options.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rene Tenazas</title>
		<link>http://www.excelcharts.com/blog/black-white-charts/#comment-913</link>
		<dc:creator>Rene Tenazas</dc:creator>
		<pubDate>Tue, 20 Jan 2009 14:59:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.excelcharts.com/blog/black-white-charts/#comment-913</guid>
		<description>Jorge,

Did I miss something?  I only see a one-line post providing no information.  It&#039;s not like any of your other posts that I&#039;ve read.</description>
		<content:encoded><![CDATA[<p>Jorge,</p>
<p>Did I miss something?  I only see a one-line post providing no information.  It&#8217;s not like any of your other posts that I&#8217;ve read.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: CloudFront: charts4.excelcharts.com

Served from: www.excelcharts.com @ 2012-02-07 21:56:26 -->
