Focal Point
[CLOSED] PDF contents to page width

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/1067006196

September 05, 2019, 01:26 PM
Shingles
[CLOSED] PDF contents to page width
Hi All,

I have a PDF report. On the report I've got a table with a few columns. I would like the table to display such that its' edges are along the left and right edges of the page (so that it takes up all of the horizontal space on the page, within the margins of course). By default it puts the table along the left side of the page with a gap along the right side of the table.

I've tried to change the WIDTH of a few columns, and the report with no success.

Also, in case this is important, I'm using a compound report.

Any suggestions? Basically, I would like to remove some of that white space. Oh, and centering the table won't work for me.

Thanks!

This message has been edited. Last edited by: FP Mod Chuck,


WebFOCUS 8201, SP 0.1, Windows 7, HTML
September 05, 2019, 01:35 PM
pav
Hi Shingles,

Could you please try LEFTMARGIN=0.02 and RIGHTMARGIN=0.02
September 05, 2019, 01:40 PM
pav
Here is the sample code
This might be useful
 TABLE FILE CAR
PRINT
CAR AS ''
COUNTRY AS ''
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     UNITS=IN,
     PAGESIZE='Letter',
     SQUEEZE=ON,
     ORIENTATION=LANDSCAPE,
      MARKUP=ON,
	  LEFTMARGIN=0,

$
TYPE=REPORT,WRAP=1,WIDTH=1,$
ENDSTYLE
END