Focal Point
[closed]trying to remove the gap between the report and the footer

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

August 01, 2012, 02:59 PM
MonkeyP
[closed]trying to remove the gap between the report and the footer
How can I remove the gap that appears between the footer of the report and the report itself in both PDF and EXL2K output formats? I will continue to search the site but haven't found anything yet.

This message has been edited. Last edited by: MonkeyP,


release 7.7.03M
OS - Linux
HTML, PDF, Excel, Delimited files, Graphs, Dashboards, MRE, Report Caster
August 02, 2012, 10:50 AM
PBax
Have you tried

BOTTOMMARGIN=0.0,

in the styling for the pdf??


81.05 All formats
August 02, 2012, 11:28 AM
Mighty Max
In PDF you play with TOPGAP and BOTTOMGAP. Also you can play with the overall font size.

  
TABLE FILE CAR
PRINT 
     COUNTRY
     CAR
     MODEL
HEADING
"Heading"
FOOTING
"Footing"
ON TABLE SET PAGE-NUM NOLEAD 
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     UNITS=IN,
     SQUEEZE=ON,
     ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
     GRID=OFF,
     FONT='ARIAL',
     SIZE=1,
	 TOPGAP=0.000,
	 BOTTOMGAP=0.025,
$
TYPE=HEADING,
     SIZE=10,$
$
TYPE=TITLE,
     SIZE=10,
	 STYLE=-UNDERLINE+BOLD,
$
TYPE=DATA,
     BACKCOLOR='LIGHT BLUE',
	 SIZE=10,
$
TYPE=FOOTING,
     BACKCOLOR='LIGHT GREY',
	 SIZE=10,
$
ENDSTYLE
END



WebFOCUS 8.1.05M Unix Self-Service/MRE/Report Caster - Outputs Excel, PDF, HTML, Flat Files
August 03, 2012, 09:59 AM
Kevin W
Don't forget PRINTPLUS = ON. I put that in all my reports now (we tend to give the users output type choices). As far as I can tell it only affects PDF output and works some wonderful magic on the footers there.


WebFOCUS 7.7.05 (Someday 8)
Windows 7, All Outputs
In Focus since 1983.
August 06, 2012, 10:39 AM
MonkeyP
will try these suggestions and let you know. Thanks!


release 7.7.03M
OS - Linux
HTML, PDF, Excel, Delimited files, Graphs, Dashboards, MRE, Report Caster