<?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: Fill Between XY Chart Series (XY-Area Combo Chart)</title>
	<atom:link href="http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Tue, 16 Mar 2010 21:53:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-27610</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sat, 27 Feb 2010 06:46:03 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-27610</guid>
		<description>Brook -

Glad you figured it out.

The macro recorder in 2010 isn&#039;t brilliant so much as finally putting in what they ran out of time for in 2007. Nice to have it back.</description>
		<content:encoded><![CDATA[<p>Brook -</p>
<p>Glad you figured it out.</p>
<p>The macro recorder in 2010 isn&#8217;t brilliant so much as finally putting in what they ran out of time for in 2007. Nice to have it back.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brook</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-27599</link>
		<dc:creator>Brook</dc:creator>
		<pubDate>Sat, 27 Feb 2010 01:26:26 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-27599</guid>
		<description>G&#039;day Jon, 

Thank you, you&#039;re a champion. I had a play around with the code and found this also works in excel 2007 and 2010. 

Sub ChangeTransparency()    
    With ActiveChart.SeriesCollection(1)
       .Format.Fill.Solid           
       .Format.Fill.Transparency = 0.5            
    End With
End Sub

You&#039;re right. It seems that you can&#039;t change the transparency of a series fill if it is on &#039;automatic&#039;, so that&#039;s why it needs to be changed to solid or the .forecolor referred to.

I didn&#039;t realise they reintroduced the ability to record chart macros in 2010, that&#039;s brilliant. 

Thanks again for the help!</description>
		<content:encoded><![CDATA[<p>G&#8217;day Jon, </p>
<p>Thank you, you&#8217;re a champion. I had a play around with the code and found this also works in excel 2007 and 2010. </p>
<p>Sub ChangeTransparency()<br />
    With ActiveChart.SeriesCollection(1)<br />
       .Format.Fill.Solid<br />
       .Format.Fill.Transparency = 0.5<br />
    End With<br />
End Sub</p>
<p>You&#8217;re right. It seems that you can&#8217;t change the transparency of a series fill if it is on &#8216;automatic&#8217;, so that&#8217;s why it needs to be changed to solid or the .forecolor referred to.</p>
<p>I didn&#8217;t realise they reintroduced the ability to record chart macros in 2010, that&#8217;s brilliant. </p>
<p>Thanks again for the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-27581</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 26 Feb 2010 12:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-27581</guid>
		<description>Brook followed up, asking how to change transparency using VBA. She uses Excel 2007 which allows transparency of chart series but which has a partially disabled macro recorder. Fortunately I have Excel 2010 installed, with its upgraded recorder, and this is what I get for the syntax to make an area chart series partially transparent:

&lt;pre class=&quot;vbasmall&quot;&gt;&lt;code&gt;Sub ChangeTransparency()
    With ActiveChart.SeriesCollection(1).Format.Fill
        .ForeColor.ObjectThemeColor = msoThemeColorAccent1
        .Transparency = 0.5
    End With
End Sub&lt;/code&gt;&lt;/pre&gt;

I don&#039;t know why you need the .ForeColor command before the .Transparency command, except that the formatting of the series was &quot;Automatic&quot;, and perhaps you can&#039;t make an automatically formatted series transparent without applying a non-automatic setting first. Excel can be line that, and Excel 2007 especially.</description>
		<content:encoded><![CDATA[<p>Brook followed up, asking how to change transparency using VBA. She uses Excel 2007 which allows transparency of chart series but which has a partially disabled macro recorder. Fortunately I have Excel 2010 installed, with its upgraded recorder, and this is what I get for the syntax to make an area chart series partially transparent:</p>
<pre class="vbasmall"><code>Sub ChangeTransparency()
    With ActiveChart.SeriesCollection(1).Format.Fill
        .ForeColor.ObjectThemeColor = msoThemeColorAccent1
        .Transparency = 0.5
    End With
End Sub</code></pre>
<p>I don&#8217;t know why you need the .ForeColor command before the .Transparency command, except that the formatting of the series was &#8220;Automatic&#8221;, and perhaps you can&#8217;t make an automatically formatted series transparent without applying a non-automatic setting first. Excel can be line that, and Excel 2007 especially.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-27533</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 25 Feb 2010 11:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-27533</guid>
		<description>Hi Brook -

In Excel 2003 and earlier, you&#039;re stuck with the colors Excel offers, with no transparency. Excel 2007 introduced a lot of excessive formatting options, but a potentially useful option hidden in the visual noise is the ability to control transparency in chart fill elements.</description>
		<content:encoded><![CDATA[<p>Hi Brook -</p>
<p>In Excel 2003 and earlier, you&#8217;re stuck with the colors Excel offers, with no transparency. Excel 2007 introduced a lot of excessive formatting options, but a potentially useful option hidden in the visual noise is the ability to control transparency in chart fill elements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brook</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-27532</link>
		<dc:creator>Brook</dc:creator>
		<pubDate>Thu, 25 Feb 2010 11:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-27532</guid>
		<description>G&#039;day John, 

Brilliant post. I&#039;ve been using this method for a while now to display the time series for two groups. I use two graphs, one on top of the other. 

I&#039;m now trying to figure out how to automate the task. Is it possible to change the transparency of the a fill series using vba? If so, how? 

Cheers. And thanks for the website in general. It&#039;s an amazing learning resource.</description>
		<content:encoded><![CDATA[<p>G&#8217;day John, </p>
<p>Brilliant post. I&#8217;ve been using this method for a while now to display the time series for two groups. I use two graphs, one on top of the other. </p>
<p>I&#8217;m now trying to figure out how to automate the task. Is it possible to change the transparency of the a fill series using vba? If so, how? </p>
<p>Cheers. And thanks for the website in general. It&#8217;s an amazing learning resource.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-20268</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 07 Oct 2009 18:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-20268</guid>
		<description>John -

The secondary axis is for the series that stay as areas. The series that will turn into XY series will not be moved, but will remain on the primary axis.</description>
		<content:encoded><![CDATA[<p>John -</p>
<p>The secondary axis is for the series that stay as areas. The series that will turn into XY series will not be moved, but will remain on the primary axis.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John McEwan</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-20258</link>
		<dc:creator>John McEwan</dc:creator>
		<pubDate>Wed, 07 Oct 2009 14:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-20258</guid>
		<description>Jon:

     I was attempting to duplicate the chart using Excel 2007 and ran into a problem when moving the two value series to the XY chart. Excel moved both Area series to the primary y axis and grayed out the selection for moving them back to the secondary y axis. Any ideas on how to get around this?</description>
		<content:encoded><![CDATA[<p>Jon:</p>
<p>     I was attempting to duplicate the chart using Excel 2007 and ran into a problem when moving the two value series to the XY chart. Excel moved both Area series to the primary y axis and grayed out the selection for moving them back to the secondary y axis. Any ideas on how to get around this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-20045</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 01 Oct 2009 10:44:26 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-20045</guid>
		<description>Martin -

It is possible to build a chart that shades the area differently depending on which XY series is greater, but it&#039;s much more complicated. You need to allow for calculation of crossing points, which may occur between any two points arbitrarily. I&#039;ve used the relevant technique in a couple other posts, &lt;a href=&quot;http://peltiertech.com/WordPress/area-chart-invert-if-negative/&quot; rel=&quot;nofollow&quot;&gt;Area Chart - Invert if Negative&lt;/a&gt; and &lt;a href=&quot;http://peltiertech.com/WordPress/stacked-area-chart-challenge/&quot; rel=&quot;nofollow&quot;&gt;Stacked Area Chart Challenge&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Martin -</p>
<p>It is possible to build a chart that shades the area differently depending on which XY series is greater, but it&#8217;s much more complicated. You need to allow for calculation of crossing points, which may occur between any two points arbitrarily. I&#8217;ve used the relevant technique in a couple other posts, <a href="http://peltiertech.com/WordPress/area-chart-invert-if-negative/" rel="nofollow">Area Chart &#8211; Invert if Negative</a> and <a href="http://peltiertech.com/WordPress/stacked-area-chart-challenge/" rel="nofollow">Stacked Area Chart Challenge</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-20044</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 01 Oct 2009 10:33:51 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-20044</guid>
		<description>Mike -

You need to bill them an extra hour for the explanation. Either it makes it worth your while to give the explanaton, or they decide they don&#039;t really need to know.</description>
		<content:encoded><![CDATA[<p>Mike -</p>
<p>You need to bill them an extra hour for the explanation. Either it makes it worth your while to give the explanaton, or they decide they don&#8217;t really need to know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://peltiertech.com/WordPress/fill-between-xy-chart-series-xy-area-combo-chart/comment-page-1/#comment-20022</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Thu, 01 Oct 2009 02:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2458#comment-20022</guid>
		<description>I would really like to see a version of this where the area is shaded depending on whether one line is above the other or not. (Something similar to the invert if negative option on bar charts.)</description>
		<content:encoded><![CDATA[<p>I would really like to see a version of this where the area is shaded depending on whether one line is above the other or not. (Something similar to the invert if negative option on bar charts.)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
