cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
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