Dynamic SVG content generation
Hi,
I have a web page generated through Oracle HTTP Server gateway.
This webpage features a series of bar, line and pie graphics that are pre-generated SVG files within iframes:
<iframe src="moves.svg" width="540" height="450" scrolling="no" frameborder="0">
this work great (aside not working nativelly in IE, but that's another issue) but latelly, users are asking to make their customized graphics, they want to input the time period for the graphic. I tried:
<iframe src="reports.moves_dyn?year=' || p_year || '" width="540" height="450" scrolling="no" frameborder="0">
where "reports" is the package name, moves_dyn is the procedure within the package, year is the parameter for moves_dyn and p_year is the parameter for the year the user wants the graph to be generated.
I have a web page generated through Oracle HTTP Server gateway.
This webpage features a series of bar, line and pie graphics that are pre-generated SVG files within iframes:
<iframe src="moves.svg" width="540" height="450" scrolling="no" frameborder="0">
this work great (aside not working nativelly in IE, but that's another issue) but latelly, users are asking to make their customized graphics, they want to input the time period for the graphic. I tried:
<iframe src="reports.moves_dyn?year=' || p_year || '" width="540" height="450" scrolling="no" frameborder="0">
where "reports" is the package name, moves_dyn is the procedure within the package, year is the parameter for moves_dyn and p_year is the parameter for the year the user wants the graph to be generated.
0