cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Saucy
Level I

How Do I Correct Blank Background - JSL Tabulated Journal to HTML Shows No Data

Hi,

 

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*.

 

Here as an example of the code:

(< 

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 << 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", <<Journal );
qwertJournal << Append( tbqwert = Tab Box() );
tbqwert << Add(
	"Overview",
	V List Box( (qwert << Report) << Clone Box, (qwertCounts << Report) << Clone Box )
);

qwertJournal << (Save HTML( "\\C:\Outputs\Graphical Summary Files\Journals\qwertJournal.html" ));

>)

 

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. 

 

 

1 REPLY 1
Thierry_S
Super User

Re: How Do I Correct Blank Background - JSL Tabulated Journal to HTML Shows No Data

Hi,
Just a thought: have you tried to specify a graphic output format ("JPG", "PNG", or "TIFF")?
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.
Best,
TS
Thierry R. Sornasse

Recommended Articles