Hi,
I am afraid that we haven’t a quick way to do that for now, but I think we can set the line style and symbol type for each plot respectively and then group the plots. I wrote a simple example:
//Plot col(2), col(4)
plotxy iy:=((1,2),(1,4)) plot:=202;
dataset ds = {1,2,3};
//Ungroup dataplots
layer -gu;
int n = 1;
//Loop over all data plots in the active layer
doc -e DY{
set %C -k ds[n]; // Set plot symbol shape (Built-in symbols)
set %C -d ds[n]; // Set the line style
n++;
}
//Group dataplots
layer -g;
To know more information about plotting data by LabTalk, please have a look at this page:
http://www.originlab.com/doc/LabTalk/guide/Creating-Graphs#Creating_a_Graph_with_the_PLOTXY_X-Function
Hope it helps.
Regards,
Yuki
OriginLab