I am creating summary tables using JSL and want to save them as images. I was able to get that to work, thanks to another post from the JMP community.
However, the image is always saved with all the borders removed which makes it hard to read at times.
Here is my sample code :
mypath = "C:/JSL/";
Set Current Directory( mypath ); //sets output directory to variable 'mypath'
DT = Data Table( "Try" );
DT << journal;
jrnl1 = current journal();
jrnl1 <<Save picture (mypath || "Sample_summary_table"|| ".png");
jrnl1 << close window;
"Try" table that I used above:
Title | ROW | N Rows |
17 | -12 | 6 |
17 | -11 | 7 |
17 | -10 | 11 |
17 | -9 | 10 |
17 | -8 | 12 |
Output image "Sample_summary_table
" that I am getting:
I would like to get something like an excel table with outlines: