Hello,
You can run this LabTalk script to set your data labels in the Comments row:
for(i=2;i<=wks.ncols;i=i+2){ //indexes each Y column in the Comments row
wcol(i)[C]$=$(i/2);
}
Then you can click the Legend Mini toolbar and select Data Plot Legend Translation Mode and specify the Comment row, as Snow suggested.
If you want to apply this to all workbooks and worksheets in your project file, use this script:
doc -e W{ //loops through all workbooks in the project
doc -e LB{ //loops through all worksheets for the selected workbook
for(i=2;i<=wks.ncols;i=i+2){
wcol(i)[C]$=$(i/2);
}
}
}
Best,
Chao