I've googled tons of times but i really find flash map charts where you rollover and get a value. i already checked out anychart, anything better?
P.S. I don't want static image charts.
Thanks
To turn my comment into an answer:
If you want charts like Google Analytics, you can use the Google interactive charts API to create interactive maps. It's the same API. See: Google Goemap Visualization Examples
Take a look at AmMap http://www.ammap.com/ As far as I understand it is what you are looking for.
PHP/Swf is probably fit for your requirements
http://www.maani.us/charts/index.php
I recommend using a jquery plugin http://www.jqplot.com and avoid flash.
You can generate the input for the graphs using php.
Related
I sampled a small wikipedia collection from 2008 and trying generate a graph similar to this: http://en.wikipedia.org/wiki/File:Wikipedia-n-zipf.png
from the processing I did. I have word frequencies and ranks of words. How can I generate the graph on the fly from the data I collected? Thanks.
If I am understanding your question correctly, you want to generate PNG charts on the fly?
This Page lists a few great chart engines for PHP. If you want to generate graphics using PHP for word frequencies, my personal favorite is PCHART It is a really nice library to generate charts like that.
Google Chart is completely free and doesn't use as much server power, but you have much less control over caching, styling, etc. The key difference here is that the actual image generation is done by Google.
If you want it to look exactly like that, you can use any of them and use the most basic settings to get what you need.
I think you want to use the google chart api / graph tools.
You can find it here
Line charts documentation and examples
I am simply looking for the communities recommendation on an open library to help develop statistical charts, graphs, and maps for a website with HTML 5 / javascript. Something similar to what fusion charts does but without having to pay an arm and a leg and having access to the deep code.
Thank you everyone. :)
Flot and
Highcharts are both pretty decent. They both require JQuery.
Raphael is another great choice, supports all browsers including IE6.
jQuery + any number of plugins designed just for that.
The Filament group has been doing a lot of work on that:
http://www.filamentgroup.com/lab/update_to_jquery_visualize_accessible_charts_with_html5_from_designing_with/
Take a look at Dojo Charting
It's very nice library for charting.
Check out Google's Visualization API.
Which is the best line chart generation tool. i need to use it in ma web page. I could also be able to save it to image format. It should be able to plot graph based on a timeline such data pertaining to a particular range of time. I got sucked up using Google Chart. Problem with scaling in that. Any things else???
i highly recommend highcharts has a great documentation and awesome demostrations.
I'd recommend flot, it is lightweight, purely javascript based, and very powerful and extensible.
We've had good results with http://www.jqplot.com/.
I'm looking to browser based map solution like google interactive chart map. I googled and i looked to smilar solution, but i didn't find good solution for it. It should be possible to created on flash, silverlight, ajax etc.
And should be change parameters easyly via javascript or sth. But i didn't like google chart beacuse; you can't change background of map and you can't modify tooltips.
Do you have any suggestions about it ?
Be practical, use Google. Don't be that guy.
Download or use the web based version of Tour de Flex (application for exploring flex capabilities)
Look for the folder Mapping, it gives you four options
-ESRI ArcGS
-Google Maps
-MapQuest Maps
-Yahoo Maps
Tool tip overlay examples are available for Google Maps. I have no clue what you mean by changing the background.... the map is the background. oO (please clarify)
Try jVectorMap. It works faster than Google implementation, looks nicer and has more built-in maps.
How could I make an image graph from values in a database? The idea came from "Steam", which uses a graph to show how many users are online. How could I do the same thing? It seems like the graph is one whole image; not made up of parts. Here's an image of the graph from Steam:
alt text http://d-load.org/public/steam-graph.PNG
You want to use JPGraph, it is a very power PHP graphing library.
http://www.aditus.nu/jpgraph/
Use this GD module from PHP. http://php.net/manual/en/book.image.php
The easiest way is using the Google Chart API. You can generate a graph by simply creating a url with your values (basic example)
You will mainly need to keep a track of how many users were connected at each period of time. Drawing the graph is easy, they are some really neat library to help you with it. ;)
+1 for Svisstack's link. Here's another one (less supported, less documented, but more features): http://www.php.net/imagick
if you are the javascript lover use this, http://raphaeljs.com/
they keep updating and many advance function.
I use FLOT with Jquery -> http://code.google.com/p/flot/
I find it easier to work with CSS than GD library to get the layout I want.
There are many javascript-tools. For example, you can choose jQuery's plugin - jqplot or Dojo charting etc...
With those, you can generate very good-looking charts/graphs.