View report in the Genero Report Viewer
Display a report in the integrated Genero Report Viewer (GRV) using the SVG format.
Create the report using fgl_report_selectDevice("SVG")
.
Configure the output using fgl_report_configureSVGDevice()
.
To specify whether the output is compressed, call fgl_report_setSVGCompression()
.
To select how the report is handled by the SVG previewer, call fgl_report_configureSVGPreview()
.
To use this function to sent the report to a client-side printer, see Print a report from the client.
Example
#In the SVG report, render fonts and shapes using antialiasing
IF fgl_report_loadCurrentSettings(reportname) THEN
CALL fgl_report_selectDevice("SVG")
CALL fgl_report_configureSVGDevice(TRUE,TRUE,NULL,NULL)
LET HANDLER = fgl_report_commitCurrentSettings()
ELSE
EXIT PROGRAM
END IF