I am sending SGPANEL output (along with some title and proc print output) to a PDF file. I have figured out all of the formatting except for two minor items. 1. At the bottom right of the SGPANEL output there is text "Page of" that I cannot get rid of. This is not the page label for the PDF pages, it is embedded in the SGPANEL output. The output chart is only one page and thus requires no pagination. The "Page of" text appears in both the PDF file and the HTML that shows up in Enterprise Guide. I am using SAS 9.4x. I do not want to format this item, I just want to remove it. 2. The COLAXIS label appears properly centered in the HTML output but in the PDF file it is centered on the bottom row of charts rather than across both rows of my two row/three column SGPANEL output. Here is the relevant code: ods pdf file="s:\want.pdf" startpage=no notoc dpi=600; ods graphics / reset=all height=4in width=6in noborder; ods escapechar = '^'; options nodate nonumber; %let VarName = SomeVariable; proc sgpanel data=&VarName._DistPct NOAUTOLEGEND; panelby As_of_Date / onepanel; styleattrs datacolors=(blue)wallcolor=pink; vbar &VarName._Bin / response=Percent group=ColorDummy; rowaxis grid label="Aggregate Current Balance Percentage" valuesformat=comma6.0 labelattrs=(size=12pt) labelpos=center; colaxis grid discreteorder=data fitpolicy=rotatethin label="&VarName." labelattrs=(size=15pt) valueattrs=(size=12pt); run; Some of the options may be unnecessary. I started throwing the kitchen sink at the problem when I could not find an answer in the documentation or forums. I appreciate your help and any references to appropriate documentation.
... View more