<?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>Tue, 09 Mar 2010 23:03:10 +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/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>
	<item>
		<title>By: Chris</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-20906</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 23 Oct 2009 10:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-20906</guid>
		<description>Jon, thank you for your great posts, your help is very much appreciated:

Maybe I didn&#039;t get your post entirely, but is there an easy way to format all series to use a light gray line with one click or by any chance some VBA-Code?</description>
		<content:encoded><![CDATA[<p>Jon, thank you for your great posts, your help is very much appreciated:</p>
<p>Maybe I didn&#8217;t get your post entirely, but is there an easy way to format all series to use a light gray line with one click or by any chance some VBA-Code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff weir</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-14954</link>
		<dc:creator>jeff weir</dc:creator>
		<pubDate>Mon, 08 Jun 2009 19:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-14954</guid>
		<description>You&#039;ve got a good point that the optionbuttons are a pain to get aligned - it probably wouldn&#039;t be a problem except that the graph behind them is resized given my collapse/expand graph functionality. 

I&#039;d forgotten about the posts you mentioned - much better way of doing it. 

The paramlink code is also tempting in that users don&#039;t have to select/activate the chart first. 

Thanks Jon</description>
		<content:encoded><![CDATA[<p>You&#8217;ve got a good point that the optionbuttons are a pain to get aligned &#8211; it probably wouldn&#8217;t be a problem except that the graph behind them is resized given my collapse/expand graph functionality. </p>
<p>I&#8217;d forgotten about the posts you mentioned &#8211; much better way of doing it. </p>
<p>The paramlink code is also tempting in that users don&#8217;t have to select/activate the chart first. </p>
<p>Thanks Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-14944</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 08 Jun 2009 12:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-14944</guid>
		<description>I wouldn&#039;t use option buttons. They are a pain to keep aligned, and they won&#039;t work on a chart sheet.

I showed in &lt;a href=&quot;http://peltiertech.com/WordPress/easier-interactive-multiple-line-chart/&quot; rel=&quot;nofollow&quot;&gt;Easier Interactive Multiple Line Chart&lt;/a&gt; and in &lt;a href=&quot;http://peltiertech.com/WordPress/gas-prices-interactive-time-series/&quot; rel=&quot;nofollow&quot;&gt;Gas Prices - Interactive Time Series&lt;/a&gt; how to use a listbox to highlight a particular series. This keeps its alignment, but also won&#039;t work on a chart sheet.

I showed in &lt;a title=&quot;Chart Event to Highlight a Series&quot; href=&quot;http://peltiertech.com/WordPress/chart-event-to-highlight-a-series/&quot; rel=&quot;nofollow&quot;&gt;Chart Event to Highlight a Series&lt;/a&gt; and in &lt;a title=&quot;Chart Event Class Module to Highlight a Series&quot; href=&quot;http://peltiertech.com/WordPress/chart-event-class-module-to-highlight-a-series/&quot; rel=&quot;nofollow&quot;&gt;Chart Event Class Module to Highlight a Series&lt;/a&gt; how to click on or mouse over a legend to highlight a series. This works on chart sheets and on embedded charts, depending on which of these approaches you use.

I thought I have even demonstrated how to capture a click on a series to highlight that series, but I can&#039;t find such an article. So I guess that&#039;s what I&#039;ll blog about one day this week.

Stay tuned.</description>
		<content:encoded><![CDATA[<p>I wouldn&#8217;t use option buttons. They are a pain to keep aligned, and they won&#8217;t work on a chart sheet.</p>
<p>I showed in <a href="http://peltiertech.com/WordPress/easier-interactive-multiple-line-chart/" rel="nofollow">Easier Interactive Multiple Line Chart</a> and in <a href="http://peltiertech.com/WordPress/gas-prices-interactive-time-series/" rel="nofollow">Gas Prices &#8211; Interactive Time Series</a> how to use a listbox to highlight a particular series. This keeps its alignment, but also won&#8217;t work on a chart sheet.</p>
<p>I showed in <a title="Chart Event to Highlight a Series" href="http://peltiertech.com/WordPress/chart-event-to-highlight-a-series/" rel="nofollow">Chart Event to Highlight a Series</a> and in <a title="Chart Event Class Module to Highlight a Series" href="http://peltiertech.com/WordPress/chart-event-class-module-to-highlight-a-series/" rel="nofollow">Chart Event Class Module to Highlight a Series</a> how to click on or mouse over a legend to highlight a series. This works on chart sheets and on embedded charts, depending on which of these approaches you use.</p>
<p>I thought I have even demonstrated how to capture a click on a series to highlight that series, but I can&#8217;t find such an article. So I guess that&#8217;s what I&#8217;ll blog about one day this week.</p>
<p>Stay tuned.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff weir</title>
		<link>http://peltiertech.com/WordPress/interactive-multiple-line-chart/comment-page-1/#comment-14941</link>
		<dc:creator>jeff weir</dc:creator>
		<pubDate>Mon, 08 Jun 2009 10:11:04 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=158#comment-14941</guid>
		<description>Hi Jon. I&#039;ve come up with a bit of a hybrid between your approach in this post and with what Andreas came up with over at the More Information Per Pixel blog at http://blog.xlcubed.com/interactive-english-league-bumps-chart/

Instead of Andreas&#039; paramlink formula, but here’s a way to accomplish nearly the same thing without it.

I’ve got a row of form optionbuttons sitting over each of the last plotted points in a bumps chart - one for each series. All the series are formatted gray as in your post above, with nice big round line markers about the same size as my optionbuttons. 

Then I’ve got a red series that points to a dynamic range courtesy of the optionbutton value being used in an offset function as you detailed above. The result is that the user clicks on the last datapoint of a particular series of interest, and that series turns red on account of the dynamic graph series range. Almost exactly the same as what Andreas&#039; paramlink function does, but without the additional addin.

Only problem is that my optionbuttons are visible, which only slightly spoils the ‘magic’ of this effect. What’s more of a problem in this partitular case is that they get in the way when I collapse a grouping that this chart is sitting in. The chart is snapped to a cell so that it completely dissapears courtesy of a ‘group and outline’ group (which is a handy way to get rid of a chart from a dashboard report when you don’t want to see it) but the option buttons seem to behave differently…they don’t dissapear along with the chart even though they are snapped to the same cell. Instead they obscure some text.

So I either need to find out how to make the optionbuttons transparent, or I need a macro that will ron a ActiveSheet.Shapes(”Option Button 33″).Visible = False routine when I collapse the particular row that the graph is in, and that will also make them visible when I expand that particular grouping.

Any help greatly appreciated.

Love your posts...I&#039;m learning a lot from them. 

regards

Jeff</description>
		<content:encoded><![CDATA[<p>Hi Jon. I&#8217;ve come up with a bit of a hybrid between your approach in this post and with what Andreas came up with over at the More Information Per Pixel blog at <a href="http://blog.xlcubed.com/interactive-english-league-bumps-chart/" rel="nofollow">http://blog.xlcubed.com/interactive-english-league-bumps-chart/</a></p>
<p>Instead of Andreas&#8217; paramlink formula, but here’s a way to accomplish nearly the same thing without it.</p>
<p>I’ve got a row of form optionbuttons sitting over each of the last plotted points in a bumps chart &#8211; one for each series. All the series are formatted gray as in your post above, with nice big round line markers about the same size as my optionbuttons. </p>
<p>Then I’ve got a red series that points to a dynamic range courtesy of the optionbutton value being used in an offset function as you detailed above. The result is that the user clicks on the last datapoint of a particular series of interest, and that series turns red on account of the dynamic graph series range. Almost exactly the same as what Andreas&#8217; paramlink function does, but without the additional addin.</p>
<p>Only problem is that my optionbuttons are visible, which only slightly spoils the ‘magic’ of this effect. What’s more of a problem in this partitular case is that they get in the way when I collapse a grouping that this chart is sitting in. The chart is snapped to a cell so that it completely dissapears courtesy of a ‘group and outline’ group (which is a handy way to get rid of a chart from a dashboard report when you don’t want to see it) but the option buttons seem to behave differently…they don’t dissapear along with the chart even though they are snapped to the same cell. Instead they obscure some text.</p>
<p>So I either need to find out how to make the optionbuttons transparent, or I need a macro that will ron a ActiveSheet.Shapes(”Option Button 33″).Visible = False routine when I collapse the particular row that the graph is in, and that will also make them visible when I expand that particular grouping.</p>
<p>Any help greatly appreciated.</p>
<p>Love your posts&#8230;I&#8217;m learning a lot from them. </p>
<p>regards</p>
<p>Jeff</p>
]]></content:encoded>
	</item>
</channel>
</rss>
