Hi I am using http://code.google.com/apis/chart/docs/gallery/googleometer_chart.html
I have:
<img src="http://chart.apis.google.com/chart?cht=bvg&chs=250x150&chd=s:egbdf&chxt=x,y&chxs=0,ff0000,12,0,lt|1,0000ff,10,1,lt&chm=o,000000,0,-1,10|V,000000,0,-1,1:15,,:4:10|H,000000,0,-1,3:9,,:8:17&chxl=0:|E|G|B|D|F" use...
I have graphs (nodes/arcs) that I want to display to the user. I need to be able to capture the event of a user clicking on a node.
Something like Google Charts API's Simple Org Chart would be great, but it looks like it only supports trees.
I would like to use JavaScript.
What other service/toolkit can I use? Or should I hack somethi...
So I have a page set up to use Google Chart API via POST requests. I have multiple charts to draw each with a submit button so that a user can view any chart they want. So it's working where pressing the submit will load the chart, but I want to improve that.
Ideally, I'd like a way (submit button or link) to submit the form with java...
Hi ,
I am using the php post request example given on http://code.google.com/apis/chart/docs/post_requests.html for generating chart.
The code:
chartserver-image.php
<?php
// Create some random text-encoded data for a line chart.
header('content-type: image/png');
$url = 'http://chart.apis.google.com/chart';
$chd = 't:';
for ($i ...
I want to use Google Chart API using javascript. (I don't want to use the python wrapper)
So how do I send data from my python code into the javascript to create graphs?
...
Can you point out what is wrong in following query?
(Please copy and paste URL)
http://chart.apis.google.com/chart?cht=p3&chs=550x200&chd=t:970,134,57,28,51,11,6&chl=Instant(970)|Below1Min(134)|Above1MinandBelow5Min(57)|Above5MinandBelow10Min(28)|Above10MinandBelow30Min(51)|Above30MinandBelow1Hr(11)|Above1HrsandBelow3Hrs(6)
...
Hi
i have given points of 2 lines. The x values are non equaly spaced. What kind of visualization (google visualization api) can i use to display the lines without interpolation of the missing data?
...
http://googlecharts.rubyforge.org/
I installed it with:
sudo gem install googlecharts
It installed fine, but whenever I try to use it I get:
NameError: uninitialized constant Gchart
Here is the code I am running:
$ irb
>> require 'gchart'
=> true
>> Gchart.line(:data => [0, 40, 10, 70, 20])
NameError: uninitialized constant Gchart
...
I am trying to the timeline chart:
http://code.google.com/apis/visualization/documentation/gallery/annotatedtimeline.html#Data_Format
Data is coming in the form of a JSON feed.
Google wants the data as something like this:
{
version:'0.6',
reqId:'0',
status:'ok',
sig:'4641982796834063168',
table:{
cols:[
...
Hello
Can anyone tell me if they know how to use the Google Chart API to store the image returned in the file system rather than be included in a webpage?
My situation is that I'd like a Java servlet or a listener to run at regular intervals on an Apache Tomcat server to make HTTP GET / POST requests to the Google Chart API and store t...
http://www.google.co.uk/finance?client=ob&q=NASDAQ:AAPL
You see below the main graph there is a zoomable smaller graph, showing market volume in this case. Well i cannot seem to find a way to display this data as bars. In the google code playground, when selecting an annotated time line the 'bottom graph' appears to only be availabl...
I have a pivot table that I need to have return NULL whenever there is not a value in the database. This seems pretty simple when you look at the Google API for their query language:
http://code.google.com/apis/visualization/documentation/querylanguage.html#Pivot
The Google example is the first image. Notice how it contains null, th...
I create a little web page that will be used for BB's. All works except for when I try to display an image using Google Charts. All works as expected on the emulator but the chart images do not work on the physical device. Below is the URL I am using in my image tag.
http://chart.apis.google.com/chart?chs=740x200&chf=bg,s,ffffff|c,s...
Hi ,
i"m using the google chart API warpper (http://code.google.com/p/googlechartsharp/wiki/ChartData)
i didn't see the option to set the labels for x axis
i want the graph looks somthing like
http://img268.imageshack.us/img268/4097/test213.jpg
i want to set the X labels
please help me how to accomplish that
thanks!
UPDATE Foun...
In the past I have used the following method to parse the json data appropriately so I can populate a select box:
var request = null;
request = $.ajax({
type: "POST",
url: "url goes here",
dataType: 'text',
success: function(returned){
returned = JSON.parse(returned)
$.each(returned, function(selectid,item)
{
...
I have the following script which I need to modify a little. Here is the json:
[
{"User1":{"v": 50.00,"f": "£100"}},
{"User2":{"v": 10.00,"f": "£20"}},
{"User3":{"v": 10.00,"f": "£20"}},
{"User4":{"v": 10.00,"f": "£20"}},
{"User5":{"v": 20.00,"f": "£40"}}
]
and here is the script:
<html>
<head>
<script language="...
I'm trying to generate a chart via the following url:
http://chart.apis.google.com/chart?chxl=0:|Mon|Tue|Wed|Thu|Fri|Sat|Sun&chxt=x&chbh=a,6,10&chs=320x225&cht=bvg&chco=A2C180&chds=0,95&chd=t:0,0,300,500,0,0,0&chtt=Test
The values are 0 for everything except for Wed and Thu when they are 300 and 500 each...
I would like to display area tag name after a person clicks on it. Unfortunately when I use code below for map area I get undefined name of obiekt name. It's weird because for textbox 'kot' it works well.
<script>
function metoda(obiekt)
{
alert(obiekt.name); //Here I get undefined!
}
</script>
<input type='text' value='kot' nam...
Does Google Chart API need internet connection on both server and client side?
...
I have a dynamically generated HTML page that uses Google charts. The things is that the page generator doesn't have easy access to the data the chart needs to display. So my thought is to have it instead generate a URL that encode what it does know and that point at another server that does have access to the data. This sever than gener...