tags:

views:

327

answers:

8

Hi all,

I'm trying to generate a graph for the statics of my site.

I need a couple of them, one for the hours of a day, one for the days of a week, one for the weeks of a month and one for the months of a year.

There are hits and unique visitors.

It could look like: http://extjs.com/deploy/dev/examples/chart/charts.html - The last example.

But i don't know how to get it working without the framework...

I'm using the Kohana PHP5 Framework.

Thanks!

A: 

You could look at pChart project. It is quite easy to use and looks quite good.

Tom Woolfrey
+6  A: 
Luke
A: 

If you don't mind it being non-flash, there is Image_Graph from PEAR

veggerby
A: 

If this question is which charting solution to use, see another reply here

If it's more about using charts with ExtJs then, from version 3.0 onwards, charting comes standard. See documentation or examples. Have a look at the source of the examples to see how the store is loaded and the chart draws data from the store.

It doesn't matter what server side technology you're using, provided that you can send your data to the browser and bind a store to that data. ExtJs provided binding to XML as well as JSON data.

Joshua
A: 

The latest ExtJS 3.0 has a simple line and bar charting. You can also look at Raphaeljs for simple and lighweight charting.

Thevs
A: 

If you don't mind using flash and you are using php on the server, then have a look at Open Flash Chart 2 I have successfully integrated it with ExtJS for display Google Analytics Data.

See the write up of my Analytics Demo

NBRed5
A: 

FusionCharts is a flash based options that works very well. They even have a free version. There's a nice API for PHP.

One issue...they do not print unless you specifically print the graph. (This is true for most, if not all flash stuff)

Jason
A: 

Some options:

Kristoffer Bohmann