02:21
> To: The elegant MVC web framework
> Subject: Re: [Catalyst] Charting data
>
> Having posted the original request I thought I had better follow up
> with what I actually did...
>
> It looked like plotkit would do what I want, and was easy to
> generate
> da
Having posted the original request I thought I had better follow up
with what I actually did...
It looked like plotkit would do what I want, and was easy to generate
data for within the main web page (so don't need 2 http round trips
and carrying state between them). However plotkit does n
On 4/17/07, Nigel Metheringham
<[EMAIL PROTECTED]> wrote:
I have an existing application which I want to add some basic data
graphing operations to.
*snip*
My initial inclination would be to have a wrapper URL which generates
pretty much a HTML frame and a IMG tag in it pointing to another ca
I am using plotkit - http://www.liquidx.net/plotkit/ which uses html
canvas - so its dependant on the browser being capable, but otherwise
offloads the graph creation rather nicely.
i probably should make a Catalyst wrapper for it :)
Cheers
Sven
--
Professional Wiki Innovation and Support
Sven
I have an existing application which I want to add some basic data
graphing operations to.
The existing code is all fairly basic CRUD like (actually its mainly
R since the CUD is done mostly externally), with a TT view and
DBIx::Class model.
The graphs wanted are of data storage volumes f
else {
$c->response->body('No data available.');
return;
}
}
$c->response->content_type('image/png');
$c->response->body($$graph_png_ref);
}
-Alex
> -----Original Message-
> From: Nigel Metheringham