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.