Hi Malgorzata,
You can store the plot attributes in the header rows of the Y column in the worksheet. For example, you can do:
1) Highlight any header row (e.g., Comments), right-click, and choose "Insert: User Parameters" flyout. Rename the name of the new header row by right-clicking it, and choose "Rename" flyout, and enter the name e.g., "color".
2) Enter the attribute value at each column's header row according to the table:
(color): http://wiki.originlab.com/~originla/ltwiki/index.php?title=LabTalk:List_of_Colors
(shape): http://wiki.originlab.com/~originla/ltwiki/index.php?title=LabTalk:List_of_Symbol_Shapes
3) Make all graphs of data combinations.
4) Run the following script:doc -e P { //looping over graph windows
layer -gu; //ungroup
doc -e D { //looping over plots in the window
set %c -c value(%c[color]$); //symbol color
set %c -k value(%c[shape]$); //symbol shape
}
}
Please see the sample screenshot below:
Hope this serves your project.
--Hideo Fujii
OriginLab