Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
Can anyone recommend any easy to use graph drawing plugins for jQuery? I am constructing a web app that will pull data from a remote database and display it in the form of a graph...
I have seen jgcharts (the jQuery Google Chart plugin) but there doesn't seem to be much documentation
In my search for a easy to use jquery plotting library i have found jqplot and flot to be the easiest to use as well as have the most features.
JqPlot - http://www.jqplot.com/
Flot - http://code.google.com/p/flot/
Check out this page and take your pick:
http://www.1stwebdesigner.com/css/top-jquery-chart-libraries-interactive-charts/
gRaphaël isn't written explicitly for jQuery, but it'll probably do what you need.
Highcharts uses jQuery as far as I know.
They have an amazing demo. Check it out, I use it for my Vaadin projects. When signing up for it, I found out they were using jQuery. It's not free but pretty reasonably priced.
Highcharts demo page.
Related
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have been looking for documentation of the Google Calendar API functions, methods, etc. from the PHP Google Client Library, but can't for the life of me find the damn thing. Does anyone know where this lives? I went in the Groups, but there is a 2 month old question for the same thing:
https://groups.google.com/forum/?fromgroups=#!topic/google-api-php-client/pP-E1noaqsI
Any ideas here?
Overview:
https://developers.google.com/google-apps/calendar/
PHP Sample Downloads:
http://code.google.com/p/google-api-php-client/wiki/Samples#Calendar_API
Methods:
https://developers.google.com/google-apps/calendar/v3/reference/calendars
You'll want to look at the reference guide for the REST API:
https://developers.google.com/google-apps/calendar/v3/reference/
Each API method has a PHP code sample. For example, if you wanted to update the CalendarList you would visit:
https://developers.google.com/google-apps/calendar/v3/reference/calendarList/update
Do you mean the Zend GData Framework?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am creating a charts report in php but not understanding what should I use.
Can you help me, what chart tool should I use?
You can try these.
pCharts
jpGraph
Google Chart (JQuery)
XML/SWF charts (3D)
Is this for a web application? If so, consider rendering the charts client-side using JavaScript.
I use flot
jpgraph has been around for a while
rgraph seems capable as well.
EDIT://
http://www.rgraph.net/
http://jpgraph.net/
What sort of charts are you looking forward to work with ? Opensource ? or the other way?
For a licensed Version, you can take a look at this Fusion Charts (Flash and javascript). Highcharts. (demos and trial versions are also available.) For opensource take a look at the Google chart API. Google provides you with both static and interactive charts. Hope this helps.
pChart 2 is great, free and easy to use. Unfortunately it is released under the GPLv3, so you cannot use it for a commercial product (but I think you can buy a license).
heyy
lot of chart apis available some of them are listed.
1.jpgraph
2.Koolgraph
3.jqchart
4.google chart
i would prefer to use google chart. its easy to use and works really good.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am looking to create a website in which I want to give users an option to create the floor plan of their house. I am looking to replicate something like http://floorplanner.com/demo#assets .
I tried to do code it with jqueryui, but found it very hard as I am not a programmer by profession.
Is anyone aware of an open source plugin that I can use in my website to create a similar tool. I searched the net for same (javascript and flash plugins) but did not get what I was looking for. I am not looking for an ideal solution, rather anything that will make it easier for me to make a final product.
Thanks,
SY
Concerning Javascript/HTML5 approach, probably the best way to solve this problem nowadays would be to make use of some HTML5 canvas library like:
- http://www.kineticjs.com/
- http://fabricjs.com/
or SVG library like Raphael.js:
- http://raphaeljs.com/
However, this is a complex problem and you'll hardly make a good and scalable solution without deeper understanding of Javascript programming.
Take a look at a similar thread, might help you.
SVG/Canvas vs Flash for FloorPlanner app
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a very simple website, and would like to create a 'Comments' section to it. Currently I have a HTML document and a CSS document running the site.
I have a little knowledge of PHP, and would like to keep this as simple as possible - i.e: saving comments to a text file perhaps? But not sure.
Can someone please suggest the simplest way of adding the comments options in.
Thanks for any help.
You can use Facebook Connect to add comments to an existing page: http://developers.facebook.com/blog/post/472 (Updated Link)
I found that post by searching google for "add facebook comments to your site"
It requires a MySQL database (which, if you're developing with PHP, is something that's better to get a cursory knowledge of sooner rather than later), but Commentator is a pretty nice, simple comment script. See: http://ratherodd.com/commentator/
You actually can do this very easily using file_get_contents() and file_put_contents(). Using only a flat text file and no database.
I set up an example page at:
http://staticchaos.freeoda.com/php/
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Recently I need to make a chart of employees' workload.Any recommendation?
Thanks.
I'd recommend pchart. Very clean, easy to install and use. The examples and documentation are great.
I also love the look of the graphs that it generates out of the box.
OpenFlashChart is kinda nice I have used it before just encode the data to json in php.. :)
http://teethgrinder.co.uk/open-flash-chart-2/
Or if you wan't to go JS..
http://g.raphaeljs.com/
highcharts is cool too if you have some money to spend :)
http://highcharts.com
Google's chart API allows you to just call a URL with the data and it returns an image. I highly recommend using it (I do):
http://code.google.com/apis/charttools/
jpgraph is also a very nice, powerful and easy to implement chart library build using PHP. It is capable of drawing Each and every type of graph. With proper documentation and examples.