Hi everyone,
not sure whether this is a bug or whether i'm doing something wrong, so maybe someone could help.
When i export graphs from GraphBuilder and the "transparency" in Preferences/Reports is "on", i get a very pixellated text:
if I turn it off, it looks fine:
I want to have transparent backgrounds with the normal quality text. Would anyone happen to have a suggestion on how to solve this?
Another note - if i export it to PowerPoint, the text is good and the background is transparent, but export to file (via script) gives the pixellated picture, as in the example.
Best wishes,
Konstantin
you could check under Preferences/Windows specific the resolution for PNG and JPEG export.
With "300" you will get a much better quality.
I am also a big fan of EMF export. On a Windows system you can even change parts of the plot later in Powerpoint.
To make it work, you have t o enable EMF copy/paste in the preferences.
Disadvantages of EMF:
Hi,
The answer will vary depending on your system (Windows or MacOS) and export method.
For Windows Copy-Paste, you could try Paste Special > Enhanced Metafile to improve the resolution of the exported plots.
Let us know if that help.
Best,
TS
you could check under Preferences/Windows specific the resolution for PNG and JPEG export.
With "300" you will get a much better quality.
I am also a big fan of EMF export. On a Windows system you can even change parts of the plot later in Powerpoint.
To make it work, you have t o enable EMF copy/paste in the preferences.
Disadvantages of EMF:
Thanks for the replies! Gonna go with this one, because this saves a few clicks when inserting individual graphs somewhere!
I'm actually running a jsl loop like this to put a bunch of images into one report (with some custom axis autoscaling and a pptx export as well):
win = New Window( "Window", Outline Box( "Graphs", hb = V List Box() ) );
For( i = 9, i <= N Cols( dt ), i++,
gb = Graph Builder( Variables( X( :Column1 ), Y( Eval( i ) ), overlay( :Group ) ) );
hb << Append( Report( gb ) << child );
hb << append( Page Break Box() );
gb << Save Picture( "path" || strTitle || ".emf", emf );
gb << close window;
);