<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<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">
	<channel>
		<title>Chandoo.org - Learn Excel &#38; Charting Online - Forums Topic: Interactive Excel charts (Crosshair)</title>
		<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair</link>
		<description>Ask Excel and Charting Questions, Muse about Visualizations, Learn and Share - Discussion Forums - Chandoo.org</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 01:30:31 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://chandoo.org/forums/search.php</link>
		</textInput>
		<atom:link href="http://chandoo.org/forums/rss/topic/interactive-excel-charts-crosshair" rel="self" type="application/rss+xml" />

		<item>
			<title>nagovind on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-29503</link>
			<pubDate>Wed, 27 Jun 2012 17:28:42 +0000</pubDate>
			<dc:creator>nagovind</dc:creator>
			<guid isPermaLink="false">29503@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;@ justdream&#60;br /&#62;
Could you please upload the final xl sheet with the solution&#60;br /&#62;
Please&#60;br /&#62;
Me too need the same application&#60;br /&#62;
Please help&#60;br /&#62;
thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>justdream on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17960</link>
			<pubDate>Tue, 07 Feb 2012 18:51:27 +0000</pubDate>
			<dc:creator>justdream</dc:creator>
			<guid isPermaLink="false">17960@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Many Thanks Kyle McGhee,&#60;br /&#62;
You are genius :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kyle McGhee on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17771</link>
			<pubDate>Sat, 04 Feb 2012 16:59:27 +0000</pubDate>
			<dc:creator>Kyle McGhee</dc:creator>
			<guid isPermaLink="false">17771@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi justdream,&#60;/p&#62;
&#60;p&#62;Sorry for the delay.  Thanks for the sample pictures, I see what you mean now.  This should give you want you want (except for the orange label thing).  Almost the same...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Option Explicit

Private Sub Chart_MouseMove(ByVal Button As Long, ByVal Shift As Long, ByVal x As Long, ByVal y As Long)

    Data_Points x, y

End Sub

Private Sub Data_Points(ByVal x As Long, ByVal y As Long)
  Dim ElementID As Long
  Dim Arg1 As Long
  Dim Arg2 As Long
  Dim Newtitle As String
  Dim xVals As Variant, yVals As Variant

    Me.GetChartElement x, y, ElementID, Arg1, Arg2

    If ElementID = xlSeries Then
        If Arg2 &#38;lt;&#38;gt; -1 Then
            With Me.SeriesCollection(Arg1)
                yVals = .Values
                xVals = .XValues

                Newtitle = .Name &#38;amp; &#38;quot;: &#38;quot; &#38;amp; yVals(Arg2) &#38;amp; &#38;quot; @&#38;quot; &#38;amp; CDate(xVals(Arg2))

            End With
            ActiveSheet.ChartTitle.Text = Newtitle
        End If
    End If

End Sub&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Kamarlon on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17709</link>
			<pubDate>Fri, 03 Feb 2012 14:48:22 +0000</pubDate>
			<dc:creator>Kamarlon</dc:creator>
			<guid isPermaLink="false">17709@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Thanks Narayank991
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17625</link>
			<pubDate>Thu, 02 Feb 2012 16:19:01 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">17625@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi ,&#60;/p&#62;
&#60;p&#62;Try formatting the secondary horizontal axis :&#60;/p&#62;
&#60;p&#62;The existing minimum value is 0 , and the existing maximum is 8.0&#60;/p&#62;
&#60;p&#62;Change this to 0.5 and 8.5 ; the points match !&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17622</link>
			<pubDate>Thu, 02 Feb 2012 15:50:05 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">17622@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi ,&#60;/p&#62;
&#60;p&#62;That's actually a problem ! I merely introduced a secondary axis for the other series , but this has shifted the series from the first one , and I am not able to line them up. I'll keep trying and let you know if I get anything.&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kamarlon on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17621</link>
			<pubDate>Thu, 02 Feb 2012 15:45:02 +0000</pubDate>
			<dc:creator>Kamarlon</dc:creator>
			<guid isPermaLink="false">17621@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;@Narayank: Thanks. What did you change so that the months are now showing? I realize though that the green point isn't in line whith the line graph. I'm wondering if it is related to the change you made
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17601</link>
			<pubDate>Thu, 02 Feb 2012 11:01:36 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">17601@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;@Kamarlon ,&#60;/p&#62;
&#60;p&#62;This is as far as I can get !&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://skydrive.live.com/#&#34; rel=&#34;nofollow&#34;&#62;https://skydrive.live.com/#&#60;/a&#62;!/view.aspx?cid=754467BA13646A3F&#38;amp;resid=754467BA13646A3F%21150&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>justdream on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17583</link>
			<pubDate>Tue, 31 Jan 2012 20:14:47 +0000</pubDate>
			<dc:creator>justdream</dc:creator>
			<guid isPermaLink="false">17583@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Thanks Kyle McGhee,&#60;br /&#62;
This is not my objective..&#60;br /&#62;
Please see these snapshots to get my point, Thanks to give me of your time&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.4shared.com/rar/PvvPE5hh/snapshots.html&#34; rel=&#34;nofollow&#34;&#62;http://www.4shared.com/rar/PvvPE5hh/snapshots.html&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kamarlon on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17569</link>
			<pubDate>Tue, 31 Jan 2012 16:02:44 +0000</pubDate>
			<dc:creator>Kamarlon</dc:creator>
			<guid isPermaLink="false">17569@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;@ Narayank991:&#60;/p&#62;
&#60;p&#62;Thanks for trying to assist me. Try this link. Copy and paste the link below:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://skydrive.live.com/redir.aspx?cid=16d0ed9ee1cb5b75&#38;amp;resid=16D0ED9EE1CB5B75&#34; rel=&#34;nofollow&#34;&#62;https://skydrive.live.com/redir.aspx?cid=16d0ed9ee1cb5b75&#38;amp;resid=16D0ED9EE1CB5B75&#60;/a&#62;!111&#38;amp;parid=16D0ED9EE1CB5B75!102&#38;amp;authkey=!ANLWF325ShAm7fc
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17550</link>
			<pubDate>Tue, 31 Jan 2012 08:09:00 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">17550@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;@Kamarlon :&#60;/p&#62;
&#60;p&#62;I tried accessing your worksheet , but could not.&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kyle McGhee on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17531</link>
			<pubDate>Mon, 30 Jan 2012 21:29:38 +0000</pubDate>
			<dc:creator>Kyle McGhee</dc:creator>
			<guid isPermaLink="false">17531@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Sure.&#60;/p&#62;
&#60;p&#62;Did you want the value of the data point and the x &#38;amp; y?  if so, just change this part&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;With Me.SeriesCollection(Arg1)
   xVals = .Values
   Newtitle = .Name &#38;amp; &#38;quot;: &#38;quot; &#38;amp; xVals(Arg2) &#38;amp; &#38;quot; : X-axis value:&#38;quot; &#38;amp; x &#38;amp; &#38;quot; Y-axis value:&#38;quot; &#38;amp; y
End With&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if you just want the x and y values only then it is much simpler, just put this in the module, rather than the other code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Option Explicit

Private Sub Chart_MouseMove(ByVal Button As Long, ByVal Shift As Long, ByVal x As Long, ByVal y As Long)

   ActiveSheet.ChartTitle.Text = &#38;quot;New Title: X-axis value: &#38;quot; &#38;amp; x &#38;amp; &#38;quot; Y-axis value: &#38;quot; &#38;amp; y

End Sub&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>justdream on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17529</link>
			<pubDate>Mon, 30 Jan 2012 20:28:30 +0000</pubDate>
			<dc:creator>justdream</dc:creator>
			<guid isPermaLink="false">17529@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Thanks Kyle McGhee,&#60;/p&#62;
&#60;p&#62;Your solution 95% of what I seek :-)&#60;br /&#62;
Just 1 favor please,&#60;br /&#62;
Could you support me to modify your code to have both Y &#38;amp; X axis values appear together..&#60;/p&#62;
&#60;p&#62;For example to be in this format:&#60;/p&#62;
&#60;p&#62;This is New Title: Y-axis value @ X-Axis value
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kamarlon on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17513</link>
			<pubDate>Mon, 30 Jan 2012 17:23:49 +0000</pubDate>
			<dc:creator>Kamarlon</dc:creator>
			<guid isPermaLink="false">17513@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Guys I tried Narayank991 suggestion see file: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://skydrive.live.com/?cid=16D0ED9EE1CB5B75&#38;amp;id=16D0ED9EE1CB5B75&#34; rel=&#34;nofollow&#34;&#62;https://skydrive.live.com/?cid=16D0ED9EE1CB5B75&#38;amp;id=16D0ED9EE1CB5B75&#60;/a&#62;!102&#60;/p&#62;
&#60;p&#62;The problem I'm having is that I want the X Axis to show the month and year from B3 to B10. It is currently showing the comments information in column A (so I deleted it). &#60;/p&#62;
&#60;p&#62;I graph consist of oen series plotted ona  line graph and 2 series plotted ona n X Y graph.&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dan_l on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17497</link>
			<pubDate>Mon, 30 Jan 2012 13:26:49 +0000</pubDate>
			<dc:creator>dan_l</dc:creator>
			<guid isPermaLink="false">17497@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;ahhhhh, a clever label.  &#60;/p&#62;
&#60;p&#62;slick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17485</link>
			<pubDate>Mon, 30 Jan 2012 06:21:00 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">17485@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi ,&#60;/p&#62;
&#60;p&#62;You might find this interesting :&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.databison.com/index.php/chart-label-trick-using-interactive-labels-on-chart/&#34; rel=&#34;nofollow&#34;&#62;http://www.databison.com/index.php/chart-label-trick-using-interactive-labels-on-chart/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kyle McGhee on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17475</link>
			<pubDate>Sun, 29 Jan 2012 22:19:43 +0000</pubDate>
			<dc:creator>Kyle McGhee</dc:creator>
			<guid isPermaLink="false">17475@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi justdream,&#60;/p&#62;
&#60;p&#62;It will require VBA and the chart will need to be on a chart sheet (otherwise more coding will be necessary).  This code should get you started.  Create a chart sheet for your chart, right click the tab and select view code.  Paste this into the right:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Option Explicit

Private Sub Chart_MouseMove(ByVal Button As Long, ByVal Shift As Long, ByVal x As Long, ByVal y As Long)

    Data_Points x, y

End Sub

Private Sub Data_Points(ByVal x As Long, ByVal y As Long)
  Dim ElementID As Long
  Dim Arg1 As Long
  Dim Arg2 As Long
  Dim Newtitle As String
  Dim xVals As Variant

    Me.GetChartElement x, y, ElementID, Arg1, Arg2

    If ElementID = xlSeries Then
        If Arg2 &#38;lt;&#38;gt; -1 Then
            With Me.SeriesCollection(Arg1)
                xVals = .Values
                Newtitle = .Name &#38;amp; &#38;quot;: &#38;quot; &#38;amp; xVals(Arg2)
            End With
            ActiveSheet.ChartTitle.Text = &#38;quot;This is New Title: &#38;quot; &#38;amp; Newtitle
        End If
    End If

End Sub&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;All of the above learned and modified from Jon Peltier @ &#60;a href=&#34;http://peltiertech.com&#34; rel=&#34;nofollow&#34;&#62;http://peltiertech.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This will not work on an area chart.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dan_l on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17473</link>
			<pubDate>Sun, 29 Jan 2012 20:44:12 +0000</pubDate>
			<dc:creator>dan_l</dc:creator>
			<guid isPermaLink="false">17473@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;I don't think there's a practical way to achieve this in Excel.  I could be wrong.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>justdream on "Interactive Excel charts (Crosshair)"</title>
			<link>http://chandoo.org/forums/topic/interactive-excel-charts-crosshair#post-17469</link>
			<pubDate>Sun, 29 Jan 2012 19:09:00 +0000</pubDate>
			<dc:creator>justdream</dc:creator>
			<guid isPermaLink="false">17469@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Dear Excel experts,&#60;/p&#62;
&#60;p&#62;Could you please support me to create interactive excel charts that could be similar&#60;br /&#62;
to below charts..&#60;br /&#62;
&#60;a href=&#34;http://www.xe.com/currencycharts/?from=CAD&#38;amp;to=AED&#38;amp;view=1D&#34; rel=&#34;nofollow&#34;&#62;http://www.xe.com/currencycharts/?from=CAD&#38;amp;to=AED&#38;amp;view=1D&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;As you will notice, once we move mouse cursor over any point in charts, we get X &#38;amp; Y axis values appeared above - once will help us in much faster and easier reading of chart values&#60;/p&#62;
&#60;p&#62;Do you have any idea how to do it over Excel?&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
