Question:
How can I show in a display the value of the pen being plotted in E3Chart?
Solution:
To do so, you must add E3Chart‘s GetCursorPos(x,y) method to a script in E3Chart‘s OnCursorChange event. In this script, you must load the values of X and Y axes to an internal tag.
Example:
Dim AxisX, AxisY
Pens.Item(“Pen1”).GetCursorPos AxisX, AxisY
Application.GetObject(“Data.InternalTag1”).Value = AxisX
Application.GetObject(“Data.InternalTag2”).Value = AxisY
Pens.Item(“Pen1”).GetCursorPos AxisX, AxisY
Application.GetObject(“Data.InternalTag1”).Value = AxisX
Application.GetObject(“Data.InternalTag2”).Value = AxisY