<?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: Interactive Multiple Line Chart</title>
	<atom:link href="http://peltiertech.com/WordPress/interactive-multiple-line-chart/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Wed, 23 May 2012 00:22:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
<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/interactive-multiple-line-chart/comment-page-1/#comment-25516</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 14 Jan 2010 15:00:17 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-25516</guid>
		<description>Pierre -

You are not the first to ask about this feature, which has been removed, and you will not be the first nor the last to regret its absence.</description>
		<content:encoded><![CDATA[<p>Pierre -</p>
<p>You are not the first to ask about this feature, which has been removed, and you will not be the first nor the last to regret its absence.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pierre</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-25506</link>
		<dc:creator>Pierre</dc:creator>
		<pubDate>Thu, 14 Jan 2010 12:07:11 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-25506</guid>
		<description>Sorry if I am not the first one to ask this:

Is it possible to change dots position of a curve with a mouse drag on the chart in Excel 2007, like in Excel 2003 ?

Many thanks
Pierre</description>
		<content:encoded><![CDATA[<p>Sorry if I am not the first one to ask this:</p>
<p>Is it possible to change dots position of a curve with a mouse drag on the chart in Excel 2007, like in Excel 2003 ?</p>
<p>Many thanks<br />
Pierre</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to graph sales data [visualization challenge] &#124; Pointy Haired Dilbert: Charting &#38; Excel Tips - Chandoo.org</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-22039</link>
		<dc:creator>How to graph sales data [visualization challenge] &#124; Pointy Haired Dilbert: Charting &#38; Excel Tips - Chandoo.org</dc:creator>
		<pubDate>Wed, 11 Nov 2009 17:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-22039</guid>
		<description>[...] Jon Pletier&#8217;s tutorial of highlighting one chart series using list boxes [...]</description>
		<content:encoded><![CDATA[<p>[...] Jon Pletier&#8217;s tutorial of highlighting one chart series using list boxes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-21244</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 29 Oct 2009 09:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-21244</guid>
		<description>Thx for taking time to respond to my question anyway.</description>
		<content:encoded><![CDATA[<p>Thx for taking time to respond to my question anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-20914</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 23 Oct 2009 11:49:47 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-20914</guid>
		<description>Chris -

The first thing I do when I need a routine like this, is make a dummy chart, turn on the macro recorder, and do what I want the macro to do (see &lt;a href=&quot;http://peltiertech.com/WordPress/how-to-recording-your-own-macro/&quot; title=&quot;How To: Record Your Own Macro &#124; PTS Blog&quot; rel=&quot;nofollow&quot;&gt;How To: Record Your Own Macro&lt;/a&gt;). Here&#039;s what it recorded (in 2003; 2007 doesn&#039;t record a lot of formatting steps):

&lt;pre class=&quot;vbasmall&quot;&gt;Sub Macro1()
&lt;span style=&quot;color: rgb(51, 153, 102);&quot;&gt;&#039;
&#039; Macro1 Macro
&#039; Macro recorded 10/23/2009 by Jon Peltier
&#039;

&#039;&lt;/span&gt;
    With Selection.Border
        .ColorIndex = 15
        .Weight = xlThin
        .LineStyle = xlContinuous
    End With
    With Selection
        .MarkerBackgroundColorIndex = xlAutomatic
        .MarkerForegroundColorIndex = xlAutomatic
        .MarkerStyle = xlNone
        .Smooth = False
        .MarkerSize = 5
        .Shadow = False
    End With
End Sub&lt;br /&gt;
&#160;&lt;/pre&gt;

So this tells me the syntax, I just need to clean it up (see &lt;a href=&quot;http://peltiertech.com/WordPress/how-to-fix-a-recorded-macro/&quot; title=&quot;How To: Fix a Recorded Macro &#124; PTS Blog&quot; rel=&quot;nofollow&quot;&gt;How To: Fix a Recorded Macro&lt;/a&gt;). Remove the default stuff that is not needed, and stick it into a For-Next loop:

&lt;pre class=&quot;vbasmall&quot;&gt;Sub AllSeriesGray()
  Dim srs As Series
  For Each srs In ActiveChart.SeriesCollection
    With srs.Border
      .ColorIndex = 15
      .Weight = xlThin
      .LineStyle = xlContinuous
    End With
    With srs
      .MarkerStyle = xlNone
      .Smooth = False
    End With
  Next
End Sub&lt;br /&gt;
&#160;&lt;/pre&gt;

&lt;em&gt;I noticed after the fact that Chris posted his own recorded and punched-up macro two minutes before I posted this.&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>Chris -</p>
<p>The first thing I do when I need a routine like this, is make a dummy chart, turn on the macro recorder, and do what I want the macro to do (see <a href="http://peltiertech.com/WordPress/how-to-recording-your-own-macro/" title="How To: Record Your Own Macro | PTS Blog" rel="nofollow">How To: Record Your Own Macro</a>). Here&#8217;s what it recorded (in 2003; 2007 doesn&#8217;t record a lot of formatting steps):</p>
<pre class="vbasmall">Sub Macro1()
<span style="color: rgb(51, 153, 102);">'
' Macro1 Macro
' Macro recorded 10/23/2009 by Jon Peltier
'

'</span>
    With Selection.Border
        .ColorIndex = 15
        .Weight = xlThin
        .LineStyle = xlContinuous
    End With
    With Selection
        .MarkerBackgroundColorIndex = xlAutomatic
        .MarkerForegroundColorIndex = xlAutomatic
        .MarkerStyle = xlNone
        .Smooth = False
        .MarkerSize = 5
        .Shadow = False
    End With
End Sub
&nbsp;</pre>
<p>So this tells me the syntax, I just need to clean it up (see <a href="http://peltiertech.com/WordPress/how-to-fix-a-recorded-macro/" title="How To: Fix a Recorded Macro | PTS Blog" rel="nofollow">How To: Fix a Recorded Macro</a>). Remove the default stuff that is not needed, and stick it into a For-Next loop:</p>
<pre class="vbasmall">Sub AllSeriesGray()
  Dim srs As Series
  For Each srs In ActiveChart.SeriesCollection
    With srs.Border
      .ColorIndex = 15
      .Weight = xlThin
      .LineStyle = xlContinuous
    End With
    With srs
      .MarkerStyle = xlNone
      .Smooth = False
    End With
  Next
End Sub
&nbsp;</pre>
<p><em>I noticed after the fact that Chris posted his own recorded and punched-up macro two minutes before I posted this.</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-20913</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 23 Oct 2009 11:47:13 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-20913</guid>
		<description>This has done it for me, if anyone cares ;)

&lt;pre class=&quot;vbasmall&quot;&gt;Sub FormatAllSeriesInOneColor()
  Dim mySrs As Series 

    For Each mySrs In ActiveChart.SeriesCollection
      With mySrs
        &lt;span style=&quot;color: rgb(51, 153, 102);&quot;&gt;&#039;mySrs.Border.Color = RGB(242, 242, 242)&lt;/span&gt;
        mySrs.Border.ColorIndex = 15
        mySrs.Border.Weight = xlThin  &lt;span style=&quot;color: rgb(51, 153, 102);&quot;&gt;&#039;xlHairline,xlThin,xlMedium,xlThick&lt;/span&gt;
        mySrs.Border.LineStyle = xlContinuous &lt;span style=&quot;color: rgb(51, 153, 102);&quot;&gt;&#039;xlContinuous,xlDash,xlDashDot,xlDashDotDot,xlDot,xlDouble,xlSlantDashDot,xlLineStyleNone
        &#039;mySrs.MarkerBackgroundColorIndex = xlNone
        &#039;mySrs.MarkerForegroundColorIndex = st&lt;/span&gt;
        mySrs.MarkerStyle = xlMarkerStyleNone &#039;xlMarkerStyleCircle.Circular,xlMarkerStyleDiamond, xlMarkerStyleNone,xlMarkerStylePlus,xlMarkerStyleStar,xlMarkerStyleX,xlMarkerStyleAutomatic,xlMarkerStyleDash,xlMarkerStyleDot,xlMarkerStyleSquare,xlMarkerStyleTriangle.Triangular,
        &lt;span style=&quot;color: rgb(51, 153, 102);&quot;&gt;&#039;mySrs.Smooth = False
        &#039;mySrs.MarkerSize = 2
        &#039;mySrs.Shadow = False&lt;/span&gt;
       End With
     Next
End Sub&lt;br /&gt;
&#160;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>This has done it for me, if anyone cares ;)</p>
<pre class="vbasmall">Sub FormatAllSeriesInOneColor()
  Dim mySrs As Series 

    For Each mySrs In ActiveChart.SeriesCollection
      With mySrs
        <span style="color: rgb(51, 153, 102);">'mySrs.Border.Color = RGB(242, 242, 242)</span>
        mySrs.Border.ColorIndex = 15
        mySrs.Border.Weight = xlThin  <span style="color: rgb(51, 153, 102);">'xlHairline,xlThin,xlMedium,xlThick</span>
        mySrs.Border.LineStyle = xlContinuous <span style="color: rgb(51, 153, 102);">'xlContinuous,xlDash,xlDashDot,xlDashDotDot,xlDot,xlDouble,xlSlantDashDot,xlLineStyleNone
        'mySrs.MarkerBackgroundColorIndex = xlNone
        'mySrs.MarkerForegroundColorIndex = st</span>
        mySrs.MarkerStyle = xlMarkerStyleNone 'xlMarkerStyleCircle.Circular,xlMarkerStyleDiamond, xlMarkerStyleNone,xlMarkerStylePlus,xlMarkerStyleStar,xlMarkerStyleX,xlMarkerStyleAutomatic,xlMarkerStyleDash,xlMarkerStyleDot,xlMarkerStyleSquare,xlMarkerStyleTriangle.Triangular,
        <span style="color: rgb(51, 153, 102);">'mySrs.Smooth = False
        'mySrs.MarkerSize = 2
        'mySrs.Shadow = False</span>
       End With
     Next
End Sub
&nbsp;</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

