3.6.4.29 MvPts (macro)

Opens the Data Reader tool and places it in the active graph window. Writes usage information on the status bar. If the dataset dataset has moveable points, it will allow you to move its data points by clicking and dragging them with the Data Reader tool.

Definition:

Def  MvPts {
      def PointProc {{EndToolbox};doTool 0};
            doTool -cntrl 3 ($Exemessage.MovePts);
            doToolbox -r %1;doToolbox -key;
};

Example:

The following script sets the data points of the dataset MyData1 as moveable and then executes the MvPts macro allowing its data points to be moved with the Data Reader tool.

Set MyData1 -m 1;
MvPts MyData1;