Custom shade alternate rows in table box
Hi, Is there a way to custom-shade alternate rows for the table box, not the data table box? I want to shade green instead of dark gray Names Default To Here( 1 );
New Window( "Mountains",
tb = Table Box(
String Col Box( "Mountain", {"K2", "Delphi", "Kilimanjaro", "Grand Teton"} ),
Number Col Box( "Elevation (meters)", {8611, 681, 5895, 4199} )
)
);