Focal Point
How to align a graph with a tabular report in PDF

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

August 18, 2004, 02:31 PM
<kj>
How to align a graph with a tabular report in PDF
I have a compound report that creates graphs and tables. The tabular reports are not aligned properly with the graphs.
does any one has an idea how to align it.

A quick response is heighly appreciated.

Thanks,
kj.

The code:

SET GRAPHSERVURL=http://localhost/ibi_apps/IBIGraphServlet
GRAPH FILE CAR
SUM DEALER_COST
ACROSS COUNTRY
ON GRAPH HOLD AS G1 FORMAT GIF
END

GRAPH FILE CAR
SUM DEALER_COST
ACROSS COUNTRY
ON GRAPH HOLD AS G2 FORMAT GIF
END

TABLE FILE CAR
PRINT CAR
WHERE RECORDLIMIT EQ 1
ON TABLE SET STYLE *
TYPE=REPORT, IMAGE=G1.GIF, POSITION=(3 0), SIZE=(5 3),$
ENDSTYLE

ON TABLE PCHOLD FORMAT PDF OPEN NOBREAK
END
TABLE FILE CAR
PRINT CAR
WHERE RECORDLIMIT EQ 1
ON TABLE SET STYLE *
TYPE=REPORT, IMAGE=G2.GIF, POSITION=(3 3), SIZE=(5 3),$
ENDSTYLE
ON TABLE PCHOLD FORMAT PDF
END

TABLE FILE CAR
PRINT CAR
WHERE RECORDLIMIT EQ 1
ON TABLE SET STYLE *
TYPE=REPORT, IMAGE=G2.GIF, POSITION=(3 0), SIZE=(5 3),$
ENDSTYLE
ON TABLE PCHOLD FORMAT PDF CLOSE
END
August 18, 2004, 04:05 PM
<kj>
I am using webfocus 5.2.6 on Win 2k.

Thanks,
kj
August 19, 2004, 03:15 PM
Larry Eiss
If you email me at larry_eiss@ibi.com I will send you a FEX that may prove helpful.
August 19, 2004, 05:19 PM
<kj>
I made it working with small changes.

Thanks,
kj