cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

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