Hi Student,
There is no gui control for this, but you could run some script such as below.
This script will find the X dataset of each plot in the active layer, and subtract 10 from the x values. So if your graph has X, Y from different datasets plotted in a layer, it will operate on each of them. Note that this operates on the active layer, so if you have more than one layer you need to run it on each layer, or you can look up LabTalk User Guide to learn how to loop over all graphs, then all layers, and run this code for each layer that is found.
// Loop over all data plots in current layer
doc -e D{
// Get current plot index
int nplot = layer.plot;
// Get the worksheet range of the corresponding X-values:
range -wx rWx = $(nplot);
// Subtract offset from the X-values
rWx -= 10;
}
}
Easwar
OriginLab