<?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 How Do I Correct Blank Background -  JSL Tabulated Journal to HTML Shows No Data in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-Do-I-Correct-Blank-Background-JSL-Tabulated-Journal-to-HTML/m-p/372797#M62269</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm experiencing an issue exporting journal to HTML. The Journal/Graph builder look as expected. The HTML save is where the error appears. Here is what the end result looks like: *see attached image.png*.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here as an example of the code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(&amp;lt; 

qwert = Graph Builder(
	Show Control Panel( 0 ),
	Variables( X( dtqwert:qwert Date ), Y( dtqwert:qwertYield ), Overlay( dtqwert:qwert ) ),
	Elements( Points( X, Y, Legend( 9 ) ), Smoother( X, Y, Legend( 10 ), Lambda( 2.8 ) ) ),
	SendToReport(
		Dispatch( {}, "graph title", TextEditBox, {Set Text( "qwert Trend" )} ),
		Dispatch( {}, "Y title", TextEditBox, {Set Text( "qwert Yield" )} )
	)
);

dtqwertCounts = dtqwert &amp;lt;&amp;lt; Summary(
	Group( dtqwert:ID, dtqwert:date, dtqwert:qwert ),
	N,
	Freq( "None" ),
	Weight( "None" )

);

TXqwertCounts = Graph Builder(
	Show Control Panel( 0 ),
	Variables( X( dtqwertCounts:date ), Overlay( dtqwertCounts:qwert ) ),
	Elements( Bar( X, Legend( 3 ) ) ),
	SendToReport( Dispatch( {}, "graph title", TextEditBox, {Set Text( "Counts by date" )} ) )
);


qwertJournal = New Window( "qwert", &amp;lt;&amp;lt;Journal );
qwertJournal &amp;lt;&amp;lt; Append( tbqwert = Tab Box() );
tbqwert &amp;lt;&amp;lt; Add(
	"Overview",
	V List Box( (qwert &amp;lt;&amp;lt; Report) &amp;lt;&amp;lt; Clone Box, (qwertCounts &amp;lt;&amp;lt; Report) &amp;lt;&amp;lt; Clone Box )
);

qwertJournal &amp;lt;&amp;lt; (Save HTML( "\\C:\Outputs\Graphical Summary Files\Journals\qwertJournal.html" ));

&amp;gt;)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The result is lacking tick and legend data as well as is color flooded. If anyone can guide me to the solution or point out the mistake I would appreciate it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 11 Jun 2023 11:12:32 GMT</pubDate>
    <dc:creator>Saucy</dc:creator>
    <dc:date>2023-06-11T11:12:32Z</dc:date>
    <item>
      <title>How Do I Correct Blank Background -  JSL Tabulated Journal to HTML Shows No Data</title>
      <link>https://community.jmp.com/t5/Discussions/How-Do-I-Correct-Blank-Background-JSL-Tabulated-Journal-to-HTML/m-p/372797#M62269</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm experiencing an issue exporting journal to HTML. The Journal/Graph builder look as expected. The HTML save is where the error appears. Here is what the end result looks like: *see attached image.png*.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here as an example of the code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(&amp;lt; 

qwert = Graph Builder(
	Show Control Panel( 0 ),
	Variables( X( dtqwert:qwert Date ), Y( dtqwert:qwertYield ), Overlay( dtqwert:qwert ) ),
	Elements( Points( X, Y, Legend( 9 ) ), Smoother( X, Y, Legend( 10 ), Lambda( 2.8 ) ) ),
	SendToReport(
		Dispatch( {}, "graph title", TextEditBox, {Set Text( "qwert Trend" )} ),
		Dispatch( {}, "Y title", TextEditBox, {Set Text( "qwert Yield" )} )
	)
);

dtqwertCounts = dtqwert &amp;lt;&amp;lt; Summary(
	Group( dtqwert:ID, dtqwert:date, dtqwert:qwert ),
	N,
	Freq( "None" ),
	Weight( "None" )

);

TXqwertCounts = Graph Builder(
	Show Control Panel( 0 ),
	Variables( X( dtqwertCounts:date ), Overlay( dtqwertCounts:qwert ) ),
	Elements( Bar( X, Legend( 3 ) ) ),
	SendToReport( Dispatch( {}, "graph title", TextEditBox, {Set Text( "Counts by date" )} ) )
);


qwertJournal = New Window( "qwert", &amp;lt;&amp;lt;Journal );
qwertJournal &amp;lt;&amp;lt; Append( tbqwert = Tab Box() );
tbqwert &amp;lt;&amp;lt; Add(
	"Overview",
	V List Box( (qwert &amp;lt;&amp;lt; Report) &amp;lt;&amp;lt; Clone Box, (qwertCounts &amp;lt;&amp;lt; Report) &amp;lt;&amp;lt; Clone Box )
);

qwertJournal &amp;lt;&amp;lt; (Save HTML( "\\C:\Outputs\Graphical Summary Files\Journals\qwertJournal.html" ));

&amp;gt;)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The result is lacking tick and legend data as well as is color flooded. If anyone can guide me to the solution or point out the mistake I would appreciate it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:12:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-Do-I-Correct-Blank-Background-JSL-Tabulated-Journal-to-HTML/m-p/372797#M62269</guid>
      <dc:creator>Saucy</dc:creator>
      <dc:date>2023-06-11T11:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I Correct Blank Background -  JSL Tabulated Journal to HTML Shows No Data</title>
      <link>https://community.jmp.com/t5/Discussions/How-Do-I-Correct-Blank-Background-JSL-Tabulated-Journal-to-HTML/m-p/372811#M62270</link>
      <description>Hi,&lt;BR /&gt;Just a thought: have you tried to specify a graphic output format ("JPG", "PNG", or "TIFF")?&lt;BR /&gt;Also, I'm not sure if it matters but your first GB object shares a name with a variable in the dtqwert table; that's never a good idea.&lt;BR /&gt;Best,&lt;BR /&gt;TS</description>
      <pubDate>Tue, 30 Mar 2021 19:50:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-Do-I-Correct-Blank-Background-JSL-Tabulated-Journal-to-HTML/m-p/372811#M62270</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2021-03-30T19:50:20Z</dc:date>
    </item>
  </channel>
</rss>

