Below is a snipet of code that modifies the shape "ovlPointer" Properties Try as I may, I have not able to create this object with .add method.
Please Comment
Please Comment
PHP:
With mchtChart
dXVal = (X * dPixelSize / dZoom - .ChartArea.Left)
dYVal = (Y * dPixelSize / dZoom - .ChartArea.Top)
With .Shapes("ovlPointer")
.Height = .Width
.Left = dXVal - (.Width / 2) - 4
.Top = dYVal - (.Height / 2) - 4
End With
End With