0
votes
1answer
57 views

Real time Google charts with MySql

I'm doing a little web-survey where I have a form that when submitted has the data stored in a MySql table. On the same website I have a couple of Google pie charts. What is the easiest way to get ...
0
votes
2answers
331 views

Google Charts API - Simple line graph with two series - nearly there

Am stuck on trying to display two series on a line chart through google charts api. I am getting my data from a database using sql and this is all working fine. I have adapted the code from: PHP ...
0
votes
1answer
69 views

Using PHP with charts and MySQL data

I'm using google charts to output a very simple pie chart google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart() { var data = ...
0
votes
1answer
394 views

Populating MySQL data with Google Charts

I'd like to create a pie chart which basically should display how many tasks a student has completed out of all tasks he has been assigned to. so my table for tasks looks like this tasks task_id | ...
0
votes
2answers
175 views

HTML Table Display from SQL Database

Struggling with integrating Google (pie) charts with a MYSQL Database. It is trying to retrieve data from a database called 'mxp937_AddStakeholder' and in particular the column name is, 'ProjectRoles' ...
1
vote
1answer
597 views

Unable to create a google pie chart from mysql database

Reading through several posts, I have got the basic idea of creating google charts but I am still not clear with how it is created from data extracted from tables in DB. Some json parsing of objects ...
0
votes
1answer
169 views

Google Chart API Data

How do I populate the Google Chart API with my own Server side data i.e. in PHPMySQL. Currently I have the following data: function drawChart() { // Create the data table. var data = new ...
0
votes
0answers
125 views

Google chart query. Use a datasource to connect my local database

I am creating a charts using google chart, I would use the query object for Querying a Chart Tools datasource on my database (MySQL). example, htm page to create query obj:     var query = new ...
0
votes
3answers
2k views

Submit form and show results on same page without refresh [duplicate]

Possible Duplicate: How to have user submit text in form and AJAX it to enter to db and show up on same page? My page structure or what i want to do: index.html -> form submit to some.php ...
0
votes
1answer
438 views

google-charts javascript arrayToDataTable from ajax

I have this array: ["day","counts","Male","Female","AVGages"],["2012-01-20",15,10,5,25]. function drawChart() { var jsonData = $.ajax({ url: "server.php", ...
1
vote
1answer
250 views

Google-charts date range filter from mysql

$SQLString = "SELECT count(score) as counts, score, month, date FROM persons GROUP BY day, month, year ORDER BY ...
0
votes
1answer
363 views

From MYSQL query to google charts

Let me start by saying, i'm not sure how to ask the right question on this, but here goes... I have a database of amounts that all have times attached to them. for example four rows would look like: ...
3
votes
1answer
725 views

Drawing a Single Google Line Chart with multiple lines using JSON

I'm trying to draw a line chart from data received from mysql database. From the database I have these data I want to draw a google line chart getting the x-axis as the sales date and the y-axis ...
1
vote
2answers
2k views

creating dynamic charts using google charts, mysql, and php

I need some help. I want to create a dynamic line chart using Google's chart api and data obtained via MySql. I'm using PHP to create the pages. I was able to create a simple chart with hard-coded ...
30
votes
2answers
9k views

PHP MySQL Google Chart JSON - Complete Example

I have searched a lot to find a good example for generating a Google Chart using MySQL table data as the data source. I searched for a couple of days and realised that there are few examples available ...
1
vote
1answer
1k views

google pie chart dynamic with mysql and php

I want to make dynamic generation of google pie chart with provided library of them. I have this code for get data from mysql: $query = "SELECT name FROM mybase WHERE name = '$name' "; ...
0
votes
1answer
334 views

Encoding string to json

I' ve got a problem with encoding string to json. I'm doing a google pie chart. Chart will be filled with data from database. Google chart requires data in json format. Below is the example of a ...
0
votes
2answers
1k views

google pie chart and php

I would like to have google pie chart on my website. The pie chart would be filled with data from database. I was loooking some examples at ...
2
votes
1answer
119 views

MySQL Simplify This Query?

I've been writing MySQL queries for a long time, but I totally feel like a newbie when it comes to this and I just can't seem to figure out how to simplify this query. Basically I'm just trying to ...
1
vote
1answer
2k views

Export my Google Chart (table) data to excel or csv

I have a google chart which is a table and I need to have an option to export the data to excel or csv. Can this be done within google charts API? I found a few pages with code but that was with the ...
0
votes
1answer
2k views

How to get mysql data into a google chart using php loop?

I've created a Google chart and I've added data taken from the database itself. But getting when getting data through php loops, i have got into difficulty because I couldn't amend that data to the ...
0
votes
1answer
182 views

Is there any php/sql wrapper for google charts

I would like to add to my website some reporting using Google charts. The report generation would be using MySql and PHP. Is there already any library helping to do that or do I have to reinvent the ...
0
votes
0answers
316 views

How to properly display and analyze mysql table data with PHP /JS / Google Charts

My goal is to fetch data from a mysql database, run calculations on the data and display it in a web dashboard using php/js/googlecharts. What is the proper way to fetch and display the information? ...
0
votes
1answer
468 views

Google chart showing “No Data Available ”

I want to create chart from the data in MySQL using php.I got the data in google chart using json_encode.I can see the chart but it shows no data available.Below is the page source of my chart page. ...
-1
votes
3answers
634 views

Access php array variable (from ajax call) in javascript

I'm having trouble accessing an array created in php, to use in a javascript block. I know about <?php echo json_encode($myArray); ?> but I'm not getting any results out of it. I have a ...
2
votes
2answers
4k views

how to work with dynamic data and google charts?

For example we have this line chart at Google Code API there is a defined set of data which this chart reflects, however i want to create the chart using my own data from php/mysql scripting. Here ...
0
votes
0answers
483 views

How to Pass data from database to Google Chart

Suppose I am going to generate this chart http://code.google.com/intl/zh-TW/apis/chart/interactive/docs/gallery/areachart.html And i am willing to read the data from Mysql database and pass it to ...
1
vote
1answer
1k views

How to convert MySQL datetime value to google chart api datetime

I am trying to convert a value from a datetime field in a MySQL database to a value I can pass on to a Google chart datetime field. For example a MySQL value: 2012-03-05 17:03:56. Google Chart Api ...
6
votes
2answers
12k views

Google Chart Tools with PHP & MySQl

I'm trying to create a chart using the Google Visualization API, with PHP & MySQL in the background. What I'm doing is: getting the data from db using PHP / SQL $sth = mysql_query("SELECT * ...
0
votes
0answers
685 views

PHP visualization library for Google Charts API

I'm implementing some Google charts using PHP as the backend. Unfortunately of the PHP visualization implementations I've found, the best looked like Mailchimp's MC-goog-visualization ...
0
votes
1answer
2k views

how to convert query result to formatted string for google chart API

I have the results of a query on a wordpress site. The query results are::- h COUNT( * ) 0 7 1 5 2 2 The query is something like this this:- $sql = 'SELECT HOUR( `post_date` ) AS h, COUNT( ...