RE: [Catalyst] Charting data

2007-05-06 Thread Shane McEwan
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

Re: [Catalyst] Charting data

2007-04-30 Thread Nigel Metheringham
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

Re: [Catalyst] Charting data

2007-04-17 Thread Cory Watson
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

Re: [Catalyst] Charting data

2007-04-17 Thread Sven Dowideit
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

[Catalyst] Charting data

2007-04-17 Thread Nigel Metheringham
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

RE: [Catalyst] Charting data

2007-04-17 Thread Hartmaier Alexander
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