Thanks for taking the time to answer, at least I was overlooking the obvious.
I foundf a solution meanwhile and this is how it worked:
//It was necessary to print them and copy paste the result, as when i was using the variables timeticks and timetickslabel I was able to make JMP crash
//timeticks=aslist(concat(0,2::94::4,96))[1];
//timeticks_labels=list();
//for(ii=1,ii<=length(timeticks),ii++,timeticks_labels[ii]=char(timeticks[ii]));
sct << New Column( "AWK",
numeric,
continuous,
formula( ADY / 7 ),
Set Property(
"Axis",
{Min( -2 ), Max( 100 ), Minor Ticks( 1 ),
Tick Label List(
{"0", "2", "6", "10", "14", "18", "22", "26", "30", "34", "38", "42", "46",
"50", "54", "58", "62", "66", "70", "74", "78", "82", "86", "90", "94",
"96"},
{0, 2, 6, 10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54, 58, 62, 66, 70,
74, 78, 82, 86, 90, 94, 96}
)}
)
);