Label Offset for MarkerSeg
I need to have a label offset for all my labels (if I choose to label a row) on my plots.So, I have 8 plots through "Group X". In each plot I have exactly 30 points.I'm trying to do the following:rgb = Report (gb);
For( i = 1, i <= 8, i++,
frame = (gb << report)[FrameBox(i)];
seg = frame << Find Seg( Marker Seg( 1 ) );
for(j = 0, j < 30, j++,
seg << label offset({j, 10, -60} )
);
); But it doesn...
DMR
jay_holavarri