You got me curious so I had a look at the jqPlot. A fantastic tool, thank you for the tip, I am definitely going to use it for my sites.
What is the problem with it? I just downloaded, unpacked and went to the 'examples' directory. All examples work like a swiss made clock and I think there is ample documentation to make it easy to adapt to your wishes. I tried my own with a simple file like this and it works just fine: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>jqplot test</title> <!--[if lt IE 9]><script language="javascript" type="text/javascript" src="excanvas.js"></script><![endif]--> <script language="javascript" type="text/javascript" src="jquery.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.jqplot.min.js"></script> <link rel="stylesheet" type="text/css" href="jquery.jqplot.css" /> </head> <body> <div id="chartdiv" style="height:300px;width:500px; "></div> <script class="code" language="javascript" type="text/javascript"> $.jqplot('chartdiv', [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]], { title:'Exponential Line', axes:{yaxis:{min:-10, max:240}}, series:[{color:'#5FAB78'}] }); </script> <script class="include" type="text/javascript" src="jquery.jqplot.min.js"></script> </body> </html> On Tuesday, July 17, 2012 11:00:10 PM UTC+2, Marcelo Santana wrote: > > Hello, all, i'm needing display some charts i tried: > > http://bakery.cakephp.org/articles/ixu38/2010/04/30/googlechart-api-helper > > show the charts but i can't configure the way i want, the line chart is > terrible > (or someone who use it successfully can show how... ) > > https://github.com/cjsaylor/Google-visualization-api-cakephp > this one i cound't show no charts at all. > > i've tried this one > http://www.jqplot.com/index.php > unsuccessfully too > > so,i guess this day was too long, and i burn my mind off ... > but anyway, someone knows a good chart for cake 1.3.x or can show me how > the above charts works ? > > xxx > > > > On Tuesday, July 17, 2012 11:00:10 PM UTC+2, Marcelo Santana wrote: > > Hello, all, i'm needing display some charts i tried: > > http://bakery.cakephp.org/articles/ixu38/2010/04/30/googlechart-api-helper > > show the charts but i can't configure the way i want, the line chart is > terrible > (or someone who use it successfully can show how... ) > > https://github.com/cjsaylor/Google-visualization-api-cakephp > this one i cound't show no charts at all. > > i've tried this one > http://www.jqplot.com/index.php > unsuccessfully too > > so,i guess this day was too long, and i burn my mind off ... > but anyway, someone knows a good chart for cake 1.3.x or can show me how > the above charts works ? > > xxx > > > > -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
