Working with a Graph Window is not the same as working with a Template. Any changes you make to a graph will be lost when you remove the dataset.My suggestion was to use Templates. You create a Template by plotting some data, making changes to the graph to suit your needs, then saving the graph as a Template. The Template does not retain the data, but does retain information on how to display data. You could create a collection of Templates with various features:
Name | Show Lines | Fill Color | Show Z Value
|
CLFN.OTP | Yes | Yes | No
|
CLNZ.OTP | Yes | No | Yes
|
CNFN.OTP | No | Yes | No
|
You could then plot a matrix with:worksheet -p 226 CLNZ.OTP
Here is an example (for a single dataset in a single layer) that dynamically replaces a graph with a file-based Template:
%A=%C; // Remember the dataset
page -t C1101.OTP; // Replace the graph with Template
layer -i226 %A; // Restore the dataset;
[This message has been edited by Greg (edited 10-07-98).]