Chart point must move to point of click in chart

tigger_na

New Member
Joined
Nov 15, 2008
Messages
2
Dear forumites

I have a path with xy coordinates that is expressed on an Excel chart. I want the user to be able to edit the path by repositioning points directly on the chart. The chart is on a chart sheet. The required methodology is as follows:
1) The user selects a point on the chart to be moved. This point is highlighted (made bigger in this case).
2) Any subsequesnt click in the chart area gets the coordiates of the click and changes the underlying data source.
3) As soon as the user clicks on a new point, the old point must be deselected, the new point becomes active and is now editable.
(Later on, the user must be able to insert or delete points, but first I must get the basics mastered.)

I've got it programmed and in a way it works, but:
• even if the user clicks on a new point to be selected, the old point is still moved. Somehow there are events firing when the new point is selected that I'm not manage to bypass.
• When a new point is selected, the user has to click on it twice. Not double click, but click for a second time. Again, the first click seems to be ineffectual, - because, I don't know, the chart area is selected with the fist click? - then the point is selected only on the second click.

I bypassed the problem by allowing point edits only with shift+click, once a point is correctly selected. This works, but there are still plenty clicks that do absolutely nothing.

Is there a more elegant way of doing this?

The code on the chart sheet:
VBA Code:
Public ThisPoint As Integer

Private Sub Chart_Activate()
Call RefreshChart
End Sub

Private Sub Chart_MouseDown(ByVal Button As Long, ByVal Shift As Long, ByVal x As Long, ByVal y As Long)
Dim p As Point
Dim i As Long
Dim intSeriesCount As Integer
Dim oAxis As Excel.Axis
Dim dzoom As Double
Dim dxval As Double
Dim dyval As Double
Dim dpixelsize As Double

Set wsFP = Worksheets("FlightPaths")
Set Chart = Charts("Map")

If TypeOf Selection Is Point Then
 
  Set p = Selection
  i = CLng(Split(p.Name, "P")(1))
  Debug.Print i
  Chart.SeriesCollection(1).MarkerSize = 5
  Chart.SeriesCollection(1).Points(i).MarkerSize = 10
  ThisPoint = i

Else
 
  If Shift = 1 Then
   
    dzoom = ActiveWindow.Zoom / 100
    dpixelsize = PointsPerPixel()
    Set oAxis = ActiveChart.Axes(xlCategory)
    dxval = oAxis.MinimumScale + (oAxis.MaximumScale - oAxis.MinimumScale) * _
          (x * dpixelsize / dzoom - _
          (ActiveChart.PlotArea.InsideLeft + ActiveChart.ChartArea.Left)) _
           / ActiveChart.PlotArea.InsideWidth
    Set oAxis = ActiveChart.Axes(xlValue)
    dyval = oAxis.MinimumScale + (oAxis.MaximumScale - oAxis.MinimumScale) * _
            (1 - (y * dpixelsize / dzoom - _
            (ActiveChart.PlotArea.InsideTop + ActiveChart.ChartArea.Top)) _
            / ActiveChart.PlotArea.InsideHeight)
    wsFP.Cells(1 + ThisPoint, 1) = dxval
    wsFP.Cells(1 + ThisPoint, 2) = dyval
 
  End If

The code in a module:
VBA Code:
Option Explicit
Public Chart As Object
Public wsFP As Worksheet

Private Const LOGPIXELSX = 88  'Pixels/inch in X

'A point is defined as 1/72 inches
Private Const POINTS_PER_INCH As Long = 72

Public Chart1 As EventClass

#If VBA7 Then
    Declare PtrSafe Function GetSystemMetrics Lib "user32" (ByVal Index As Long) As Long
    Declare PtrSafe Function GetDC Lib "user32" (ByVal hWnd As Long) As Long
    Declare PtrSafe Function ReleaseDC Lib "user32" (ByVal hWnd As Long, ByVal hDC As Long) As Long
    Declare PtrSafe Function GetDeviceCaps Lib "gdi32" (ByVal hDC As Long, ByVal Index As Long) As Long
    Declare PtrSafe Function GetWindowRect Lib "user32" (ByVal hWnd As Long, ByRef lpRect As udtRECT) As Long
#Else
    Declare Function GetSystemMetrics Lib "user32" (ByVal Index As Long) As Long
    Declare Function GetDC Lib "user32" (ByVal hWnd As Long) As Long
    Declare Function ReleaseDC Lib "user32" (ByVal hWnd As Long, ByVal hDC As Long) As Long
    Declare Function GetDeviceCaps Lib "gdi32" (ByVal hDC As Long, ByVal Index As Long) As Long
    Declare Function GetWindowRect Lib "user32" (ByVal hWnd As Long, ByRef lpRect As udtRECT) As Long
#End If

Type udtRECT
    Left As Long
    Top As Long
    Right As Long
    Bottom As Long
End Type

Sub RefreshChart()
'Crazy code to refresh chart

Chart.Activate
DoEvents
Chart.Refresh
DoEvents
Chart.Activate
Chart.Refresh
  
End Sub

'The size of a pixel, in points
Public Function PointsPerPixel() As Double
Dim hDC As Long
Dim lDotsPerInch As Long

   hDC = GetDC(0)
   lDotsPerInch = GetDeviceCaps(hDC, LOGPIXELSX)
   PointsPerPixel = POINTS_PER_INCH / lDotsPerInch
   ReleaseDC 0, hDC
End Function

Public Sub ChartCoordinates()
Dim ochart1 As EventClass

   Set ochart1 = New EventClass
   Set ochart1.ExcelChartEvents = ActiveChart

End Sub

Public Function ConvertPixelsToPoints(ByVal sngPixels As Single, ByVal sXorY As String) As Single
Dim hDC As Long

   hDC = GetDC(0)
   If sXorY = "X" Then
      ConvertPixelsToPoints = sngPixels * (72 / GetDeviceCaps(hDC, 88))
   End If
   If sXorY = "Y" Then
      ConvertPixelsToPoints = sngPixels * (72 / GetDeviceCaps(hDC, 90))
   End If
   Call ReleaseDC(0, hDC)
   
End Function

End If
  
End Sub

The code in a class module:
VBA Code:
Public WithEvents ExcelChartEvents As Excel.Chart
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
I wrote a detailed tutorial about Chart Events in Microsoft Excel. You might find some useful tricks there.

When you click on a point, the first click selects the entire series, and the second click selects the individual point. You were having trouble figuring this out.

Here is a better way to determine which point the user has clicked on.

VBA Code:
Private Sub TheChart_MouseUp(ByVal Button As Long, ByVal Shift As Long, _
        ByVal x As Long, ByVal y As Long)
 
    Dim ElementID As Long, Arg1 As Long, Arg2 As Long
    Dim myX As Variant, myY As Double
 
    With ActiveChart
        ' Pass x & y, return ElementID and Args
        .GetChartElement x, y, ElementID, Arg1, Arg2
 
        ' Did we click over a point or data label?
        If ElementID = xlSeries Or ElementID = xlDataLabel Then
            If Arg2 > 0 Then
                ' Extract x value from array of x values
                myX = WorksheetFunction.Index _
                    (.SeriesCollection(Arg1).XValues, Arg2)
                ' Extract y value from array of y values
                myY = WorksheetFunction.Index _
                    (.SeriesCollection(Arg1).Values, Arg2)
 
                ' Select the clicked point
                .SeriesCollection(Arg1).Points(Arg2).Select
               
                ' Display message box with point information
                MsgBox "Series " & Arg1 & vbCrLf _
                    & """" & .SeriesCollection(Arg1).Name & """" & vbCrLf _
                    & "Point " & Arg2 & vbCrLf _
                    & "X = " & myX & vbCrLf _
                    & "Y = " & myY
            
            End If
        End If
    End With
End Sub

The event tells you the screen coordinates (x, y) of the click.
.GetChartElement x, y, ElementID, Arg1, Arg2 tells you what element is at those coordinates.
If the ElementID indicates a series, my sample routine selects the point and displays a message box with the series number and name, point number, and chart coordinates of the point.

You could store the series and point index and change the size of the marker.

Then capture the next click, and if the ElemendID is the plot area, convert the screen x-y into new chart X-Y values. Put these into the appropriate cells in the worksheet and reset the marker size.

I will note that I never successfully converted screen x-y in a chart sheet into any meaningful information, but I've made it work with embedded charts.
 
Upvote 1
Solution
I wrote a detailed tutorial about Chart Events in Microsoft Excel. You might find some useful tricks there.

When you click on a point, the first click selects the entire series, and the second click selects the individual point. You were having trouble figuring this out.

Here is a better way to determine which point the user has clicked on.

VBA Code:
Private Sub TheChart_MouseUp(ByVal Button As Long, ByVal Shift As Long, _
        ByVal x As Long, ByVal y As Long)
 
    Dim ElementID As Long, Arg1 As Long, Arg2 As Long
    Dim myX As Variant, myY As Double
 
    With ActiveChart
        ' Pass x & y, return ElementID and Args
        .GetChartElement x, y, ElementID, Arg1, Arg2
 
        ' Did we click over a point or data label?
        If ElementID = xlSeries Or ElementID = xlDataLabel Then
            If Arg2 > 0 Then
                ' Extract x value from array of x values
                myX = WorksheetFunction.Index _
                    (.SeriesCollection(Arg1).XValues, Arg2)
                ' Extract y value from array of y values
                myY = WorksheetFunction.Index _
                    (.SeriesCollection(Arg1).Values, Arg2)
 
                ' Select the clicked point
                .SeriesCollection(Arg1).Points(Arg2).Select
              
                ' Display message box with point information
                MsgBox "Series " & Arg1 & vbCrLf _
                    & """" & .SeriesCollection(Arg1).Name & """" & vbCrLf _
                    & "Point " & Arg2 & vbCrLf _
                    & "X = " & myX & vbCrLf _
                    & "Y = " & myY
           
            End If
        End If
    End With
End Sub

The event tells you the screen coordinates (x, y) of the click.
.GetChartElement x, y, ElementID, Arg1, Arg2 tells you what element is at those coordinates.
If the ElementID indicates a series, my sample routine selects the point and displays a message box with the series number and name, point number, and chart coordinates of the point.

You could store the series and point index and change the size of the marker.

Then capture the next click, and if the ElemendID is the plot area, convert the screen x-y into new chart X-Y values. Put these into the appropriate cells in the worksheet and reset the marker size.

I will note that I never successfully converted screen x-y in a chart sheet into any meaningful information, but I've made it work with embedded charts.
Thank you very much, John. Much of my code is solved by, as you suggested, putting it in the MouseUp section, instead of mousedown. Works like a charm!
 
Upvote 0

Forum statistics

Threads
1,215,214
Messages
6,123,660
Members
449,114
Latest member
aides

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top