<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can you add outline to Data table when saving as image? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/243394#M48032</link>
    <description>&lt;P&gt;Here is an example of how I have done this in the past....it is a little bit of a kluge, but it works&lt;/P&gt;
&lt;P&gt;.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="border.PNG" style="width: 191px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21372i32ED4544D97BAEA8/image-dimensions/191x595?v=v2" width="191" height="595" role="button" title="border.PNG" alt="border.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");
myjournal = dt &amp;lt;&amp;lt;journal;
wait(0);
nw = New window("example",&amp;lt;&amp;lt;journal, bb = border box(top(1),left(10),right(1),bottom(1),
	sides(15)
));

bb&amp;lt;&amp;lt;append(myjournal);
myjournal &amp;lt;&amp;lt; close window;&lt;BR /&gt;&lt;FONT face="Consolas,Monaco,&amp;quot;Andale Mono&amp;quot;,&amp;quot;Ubuntu Mono&amp;quot;,monospace" size="2" style="background-color: #f5f5f5;" color="#b00000"&gt;xx=nw&amp;lt;&amp;lt;get picture;&lt;/FONT&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 28 Jan 2020 22:27:16 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-01-28T22:27:16Z</dc:date>
    <item>
      <title>Can you add outline to Data table when saving as image?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/243343#M48029</link>
      <description>&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;However, the &lt;EM&gt;image is always saved with all the borders removed which makes it hard to read at times&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my sample code :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;mypath = "C:/JSL/";
Set Current Directory( mypath );   //sets output directory to variable 'mypath'
DT = Data Table( "Try" );

DT &amp;lt;&amp;lt; journal;
jrnl1 = current journal();
jrnl1 &amp;lt;&amp;lt;Save picture (mypath || "Sample_summary_table"|| ".png");
jrnl1 &amp;lt;&amp;lt; close window;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;"Try" table that I used above:&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Title&lt;/TD&gt;&lt;TD&gt;ROW&lt;/TD&gt;&lt;TD&gt;N Rows&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;-12&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;-11&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;-10&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;-9&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;-8&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output image "&lt;CODE class=" language-jsl"&gt;Sample_summary_table&lt;/CODE&gt;" that I am getting:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="skumar0789_1-1580237358530.png" style="width: 290px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21367i7A0A7268B1DDE41F/image-dimensions/290x127?v=v2" width="290" height="127" role="button" title="skumar0789_1-1580237358530.png" alt="skumar0789_1-1580237358530.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I would like to get something like an excel table with outlines:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 200px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21368i3926746299A7C1C4/image-size/small?v=v2&amp;amp;px=200" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 18:56:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/243343#M48029</guid>
      <dc:creator>skumar0789</dc:creator>
      <dc:date>2020-01-28T18:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can you add outline to Data table when saving as image?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/243394#M48032</link>
      <description>&lt;P&gt;Here is an example of how I have done this in the past....it is a little bit of a kluge, but it works&lt;/P&gt;
&lt;P&gt;.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="border.PNG" style="width: 191px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21372i32ED4544D97BAEA8/image-dimensions/191x595?v=v2" width="191" height="595" role="button" title="border.PNG" alt="border.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");
myjournal = dt &amp;lt;&amp;lt;journal;
wait(0);
nw = New window("example",&amp;lt;&amp;lt;journal, bb = border box(top(1),left(10),right(1),bottom(1),
	sides(15)
));

bb&amp;lt;&amp;lt;append(myjournal);
myjournal &amp;lt;&amp;lt; close window;&lt;BR /&gt;&lt;FONT face="Consolas,Monaco,&amp;quot;Andale Mono&amp;quot;,&amp;quot;Ubuntu Mono&amp;quot;,monospace" size="2" style="background-color: #f5f5f5;" color="#b00000"&gt;xx=nw&amp;lt;&amp;lt;get picture;&lt;/FONT&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Jan 2020 22:27:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/243394#M48032</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-01-28T22:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: Can you add outline to Data table when saving as image?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/247033#M48497</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;. That will work for sure. I ended up making the summary tables using Python scripts instead. I found them to be a bit more user friendly when exporting tables to a powerpoint.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 18:33:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/247033#M48497</guid>
      <dc:creator>skumar0789</dc:creator>
      <dc:date>2020-02-11T18:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can you add outline to Data table when saving as image?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/247039#M48500</link>
      <description>&lt;P&gt;Whatever "flicks your Bic"...…...you have to be old to have heard that old saying&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 19:07:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-you-add-outline-to-Data-table-when-saving-as-image/m-p/247039#M48500</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-02-11T19:07:06Z</dc:date>
    </item>
  </channel>
</rss>

