Fill Color
Fill Color using Run Script
Summary: Creates a path diagram with customized appearance settings, including R2 fill color and show R Squared values, using the SEM: Bollen (1989) script.
Code:
dt = Open("data_table.jmp");
obj = dt << Run Script( "SEM: Bollen (1989)" );
obj << Path Diagram Properties( R2 Fill Color( Cyan ), Show R Squared Values( 1 ) );
Code Explanation:
- Open table.
- Run SEM script.
- Set path diagram properties.
- Change R2 fill color.
- Show R Squared values.