Template::Plugin::GD - drawing graph
Hi
There's probably a very trivial answer to my question but I just can't
find it.
I'm trying to incorporate a line graph into a webpage by:
<html>
<body>
<table> ....</table>
[%
FILTER null;
USE im = GD.Graph.lines();
...
...
im.plot(data).png | stdout(1);
END;
%]
</body>
</html>
-----------------------
-- Problem: --
-----------------------
When using stdout(1):
* webpage content: will not show
* graph: will show
Without using the stdout(1):
* webpage content: will show
* graph: will not show
Is there a way of making both the webpage content and graph visible?
Thanks
AC
.
Relevant Pages
- Re: Template::Plugin::GD - drawing graph
... I'm trying to incorporate a line graph into a webpage by: ... You need to take a step back and learn how HTML works. ... Because you have an invalid HTML page with a whole lot of binary data in ... (comp.lang.perl.misc) - Re: How do I HOTLINK an image? (NOT hyperlink.)
... I make and sell cross stitch charts for sale over the web. ... So - I know I have to fiddle around with html a little with my encoded ... These needs to be pasted as a button/image into my webpage ... >> has been to save a copy of a .DOC file in HTML format ... (microsoft.public.word.docmanagement) - Re: Is there any good webpage maker under linux?
... sometimes use Frontpage to edit the html syntax. ... there is some webpage maker like dreamweavor and Frontpage in windows. ... When I decided to make a webpage, I took a simple text editor and a book ... the internet basics and away I went, and two days later I had the basics ... (comp.os.linux.misc) - Re: Javascript and IE6 ... maybe ???
... When I create a webpage in IE6 which may include some simple ... If it is a free web hosting service, it is likely that they will add their own HTML to every one of your web pages. ... It is to insert an info string to identify that you are using their service (i.e., it's an add to tell all your visitors whose free web services you use) or to insert ads. ... (microsoft.public.windows.inetexplorer.ie6.browser) - Re: Chinese Characters in html (coding on a Mac OS X)
... I am presently trying to display chinese characters on a webpage ... (HTML). ... Your webpage will gain much more benefits with HTML 4.01 strict. ... You will greatly simplify your tasks if you edit your document with Nvu 1.0 which is available in several languages and in which you can choose the character encoding before or while you're editing your webpage. ... (comp.infosystems.www.authoring.html) |
|