The row label widths are set automatically, but you can control this in two ways.
One is to use the SPSSINC MODIFY TABLES extension command like this. On the WIDTHS subcommand specify the label columns to adjust and width in points for each. Label column numbering starts with 0. Label 0 is normally not visible.
SPSSINC MODIFY TABLES subtype="customtable"
SELECT="<<ALL>>"
DIMENSION= ROWS LEVEL = -1
PROCESS = PRECEDING
/WIDTHS ROWLABELS=0 1 2 ROWLABELWIDTHS=50 50 50
/STYLES APPLYTO=LABELS.
Another is to create a tableLook with the minimum and maximum widths specified. You can do that by creating a table, editing it in the pivot table editor, and using the row label widths parameters, and saving that as a tableLook. Then apply that look using SPSSINC MODIFY TABLES using, e.g.,
/STYLES APPLYTO=LABELS
TLOOK="c:\temp\twoinches.stt".
Extension commands can be installed via the Extensions > Extension Hub menu.
#SPSSStatistics#Support#SupportMigration