google-charts

Use High-charts, Open Flash Chart 2, Google Charts or what else !!!!

One web application of ours requires a feature of displaying charts in it. Basically we have to show different types of charts for different purposes such as pie charts to give information about some purpose,Bar charts for some other purpose whereas Complex charts for complex data.Note that this charts will be created dynamically dependi...

Any good wrappers/libraries for Google CHarts with PHP?

I see alot of them around, but short of comparing them all it might be quicker to code my own. Unless someone already has done an evaluation & can recommend "the best" ... (or has decided that PChart is better :-) ...

Anyone having problems with Google charts in XAMPP ?

I use the example for POST, found here. On a windows 7 machine it doesn't show the chart, just the image's ALT text (which I added to the example). When I upload the two files to my website it works just fine. Has anyone else tried this with XAMPP? Would someone? If it works for you on localhost can you please paste the entire code o...

Google Charts PHP wrapper - image mapping on charts

I use the gchartphp wrapper to create various graphs. I'd like to know if it support image maps like gcharts does? Say I have a pie chart showing backup stats (success, failed, missing email). What I want is to be able to click on say, success and then get a list of all successful backups. Is this possible with the gchartsphp wrapper ...

How to debug Google Charts API when using POST?

The troubleshooting page has some advice about GET, but nothing for POST. Currently I am just taking away one post attribute at a time until it is no longer broken. Is there a better way? Hmm, the troubleshooting page recommends resubmitting a GET request with chof=validate or pasting into the Chart Playground - is there any quick w...

how can I make a simple interactive web map of data for countries (bigger than what google Chart API allows)

I have a spreadsheet with: URL, 2 digit country code, Main Value, Less important values ... I just want to make a simple map that can be bigger than what Google Charts API allows (that one is limited to 600x600), but a similar level of simplicity. If it looks nice and is interactive (hovering on country shows data) all the better. If...

Google Charts - "Missing Query for request id: 0"

This error only appears if I try to put two charts on the same page. Both charts work perfectly if they are the only one on the page. The minute I add the second only the first one loads and I get the "Missing Query for request id: 0" error. Here is my js file for the chart: function drawChart(title, queryPage, divToFill) { var data...

How to Save Google Charts to the Server

Background: We're using Google Charts to create graphs of some data generated by our web app. The user creates a report and then emails that report. Trouble is, once the user opens the report in Microsoft Word, that program exhibits some odd behavior regarding the dynamically generated images. So, using PHP, we want to save our dynamic...

How to create Candlestick chart of google api

I am to create a candlestick chart to show stock details from xml file in asp.net please provide me any good link of example/tutorial of google's candlestick charts. i got http://code.google.com/apis/chart/docs/gallery/compound_charts.html link but dont know how to use this api in asp.net(vs2008) to show candlestick chart. thanks ...

Overriding onmouseover events in Google Chart API's

I am using the Google PieChart visualization and by default, when you mouse over the various slices of the pie chart, there is a tooltip that displays information about the data slice. I would like to disable this tooltip from displaying altogether. You can easily add a listener to the onmouseover event, but I'd like to override that e...

In Google Chart why labels on X axis not aligned with bars

I am trying hard to align labels (AKR, IMR ....) on X axis it even try manually position them, specify bar width but it never worked for me. any help. here is my data http://chart.apis.google.com/chart?chxs=1,676767,8,0,t,676767&chxr=0,0,294|1,1,35,0&chxl=1:|AKR|IMR|MWR|NCR|NER|PWR|SER|AKR|IMR|MWR|NCR|NER|PWR|SER|AKR|IMR|MWR|NCR...

Google Chart API: trouble with rendering a XYLine graph

I'm trying to make an XYLine with the Google Chart API via the not-so-well-documented GChartWrapper libraries. Here's a portion of the code that is supposed to generate the graph: data = [] traffic_max = 0 date_minmax = [] #I have a number of timestamped readings in two series for site in sites: site_data = get_datapoints_for(site) ...

How to insert comment next to each data point in Google chart.

Hi I am using Google chart API (with php) in my project to show some chart like line, pie, bar etc. I want to insert a comment next to each data point on a chart that's created, so that this data can store to the database. Eg: I have a trend line for 5 years. The values being 10,13,22,15,14 For one or more of these points, I want to ...

Google Chart - pie chart mouse-over tooltip

How can I make tooltips in Pie Charts created using Google Charts to be displayed when mouse hovers over a pie slice? Currently I have to click the slice for tooltip to be displayed. ...

Is there something similar to Google Map Chart?

I really like Google Map Chart, but the maximum size that can be generated is only 420x220 which is small. Is there any similar service or product? Maybe using Javascript? [edit] Don't you think this is small map ? ...

How do I reduce the X axis on a Google Chart?

I'm doing a bar chart with google, and my results look like this (link). If you see that the graph is not beautiful enough. What is the parameter that can reduce the value on the x axis. Thank you in advance. ...

Is there a 'best' Google charts API for PHP?

Is there a "best" one? Does it offer as much flexibility as the Google API? I am wary of using such wrapper, as I would need to take the time to evaluate each individually, so I am asking here if anyone has already done this. Are there any benefits in a wrapper? The Google API seems clear enough. And what guarantee is there that a wra...

GChartPhp - using HTML "title" (hovertip) on the X axis labels

I would like to have as many labels as possible across the bottom X-axis, which means that the text has to be short. For instance, on a date range, I just put a day number, but I would like the user to be able to er the cursor over a label and see the calendar date comprehending to day number, which is just 1 2 3 4 .... So, I thought I ...

How can I programatically render Google Charts API images into a PDF file?

I'm rendering charts on my website using the Google Charts API and I want to export these into a report for the users, most likely a PDF file. What methods are available to do this programmatically into a PDF file? ...

Making a POST to Google chart API with AJAX

HI all, i'm trying to use google chart API to make some charts in a website using ajax (don't what to reload the page). But i'm having a problem. I have to use POST to make the requests but i don't known if ajax allow this. For example: var xmlhttp=new XMLHttpRequest(); xmlhttp.open("POST","http://chart.apis.google.com/chart?",true); ...