Do you want to open the menu or set those by JSL?
Make a modification by hand and then check the report script. In this case I did changed value 12 label to be 13
Graph Builder(
Transform Column(
"age'",
Ordinal,
Set Property("Configure Levels", 1),
Set Property("Value Order", {Custom Order({12, 13, 14, 15, 16, 17})}),
Value Labels(
{12 = "13", 13 = "13", 14 = "14", 15 = "15", 16 = "16", 17 = "17"}
),
Use Value Labels(1),
Formula(:age)
),
Variables(X(:age')),
Elements(Points(X, Legend(7)))
)
and it seems like it just creates a transform column and sets some column properties to it
-Jarmo