Focal Point
Display Image in PDF

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

August 09, 2004, 09:35 PM
<kj>
Display Image in PDF
Is there a way to display image for each data row in pdf? The Graph command in this example created a gif image. The second one displays GIF image in pdf. I need to create a graph for each row in the second table and sisplay along with the data row. The graph type can be bar,stacked, dual axes line graph.
any Idea how to get it?

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

TABLE FILE CAR
PRINT CAR
ON TABLE SET STYLE *
-MRNOEDIT TYPE=REPORT, IMAGE=GRF.GIF, POSITION=(2 0), SIZE=(5 3),$
ENDSTYLE
ON TABLE PCHOLD FORMAT PDF
END


thanks in advance
kj
August 09, 2004, 10:06 PM
<Pietro De Santis>
kj,

I don't know if this will help in your case, but have you considered "data visualization bar graphs"?

TABLE FILE CAR
SUM DEALER_COST
BY COUNTRY
ON TABLE SET STYLE *
TYPE=REPORT, GRID=OFF, $
GRAPHTYPE=DATA, COLUMN=DEALER_COST, GRAPHCOLOR=SILVER, GRAPHLENGTH=2, GRAPHWIDTH=.25, $
ENDSTYLE
END


Regards,

Pietro.

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