0
votes
0answers
18 views

How to draw continuous charts with gwt-visualization

I'm using gwt-visualization to display some Google Charts. Everything works fine except that I can't set up a continuous X-axis for my column chart. From my understanding, I only need to define the ...
0
votes
0answers
17 views

Dynamically add items to compare in annotated timeline

I have an Annotated Time Line which works statically perfect. I want users to be able to dynamically add or remove items to compare with each other. something like this: ...
1
vote
2answers
72 views

google.visualization chart - DataTable in google site

I'm not understand how to implement chart in Google site. My goal is to show spreadsheet. I'm choose to use the charts from google.visualization.DataTable with dashboard. This is my steps: 1) Create ...
0
votes
2answers
63 views

How to change grid size in gwt-visualization's LineChart?

I am using the 1.1.1 release of gwt-visualization. Here is what I got so far: final DataTable dataTable; // creation of the data table left out .. final Options options = Options.create(); final ...
1
vote
1answer
220 views
+100

How do I set a date range variable dynamically and redraw a Google chart?

I am using PHP to set a date range for creating a Google Line Chart. For each date in the range a variable is set ($running_balance) to create the points on the line chart using data in a database. ...
2
votes
1answer
429 views

cannot set property 'overflow' of null

webView.getSettings().setJavaScriptEnabled(true); webView loads this html code: <html> <head> <script type='text/javascript' ...
0
votes
1answer
119 views

Why is my percentage on google pie chart cut on display?

My google pie chart percentage is cut on display and I don't know why, here is the javascript function to draw such chart function drawChart(arr, id, title) { var data = new ...
0
votes
0answers
94 views

Google chart tools change type of chart listener crash

I have 4 types of charts: table, column, geo, and pie. Only one chart is visible at any given time with the ability to switch in between them. When the document's 'onready' event is fired I draw the ...
1
vote
1answer
325 views

Google charts API scatter chart with legend and other colors

I have this one example: // Load the Visualization API and the piechart package. google.load('visualization', '1.0', {'packages':['corechart']}); // Set a callback to run when the ...
1
vote
1answer
46 views

How do I read and modify axes on an already-drawn Google chart?

I have a page with several google charts on it, mostly combo charts and line charts. For instance: chart = new google.visualization.LineChart(chartDiv); After the page has already drawn, I would ...
0
votes
1answer
244 views

Binding Events in google pie chart

I have a Pie Charts generated by Google Chart API. The code for the chart goes as Below google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart1); ...
0
votes
1answer
61 views

Load different data source for same charts in Google Charts

Overall Problem: I have year-wise data in different JSON files. For each JSON file, I generate 3 charts that are displayed on the webpage. Now the user should be able to select a different year, and ...
0
votes
1answer
130 views

Uncaught Error: Invalid value in 0,0

I'm having a really weird issue while trying to visualize this scatter plot using the google visualization API. Basically, if I put the first data point as [0,0] everything will be fine, but if ...
0
votes
0answers
53 views

how to merge two cells in table using Google visualization

i have some problem with Google visualization data table plugin in my project. Here i need to merge two cell. please check this link http://jsfiddle.net/5sLSb/ i need to merge cells name1 and ...
0
votes
1answer
636 views

Google Charts API: Always show the Data Point Values in Graph

Is it possible to always show the data point values in Line/Bar charts? by default values values are shown only when hovering on the data points as tooltip. Something like this:
1
vote
0answers
186 views

Google Chart Tools - overlapping labels

I'm using Google Chart Tools to display a simple line graph for unknown reason the labels overlap no matter how I set the "legend" parameters. In the screenshot below you can see the result for ...
0
votes
1answer
343 views

Google Chart API: Change color on hovering legend

So I have a ColumnChart and one of the built-in functionality is that you can hover over an item (so called category) in the legend of the chart and you get some highlight-border around the ...
0
votes
0answers
73 views

How can get current index when i select line chart (Goole Line Chart)?

I draw my line chart: dataChart = new google.visualization.DataTable(jsondata); chart = new google.visualization.LineChart(document.getElementById('linediv_chart')); chart.draw(dataChart, options); ...
0
votes
1answer
62 views

Google Controls and dashboards - Change place holder value

I need to change the default place holder value of the Google charts category filter. Can any one specify how can i do it ?
3
votes
2answers
363 views

Google chart point color

Is it possible to change point color in Google chart api, something like this: From this: To this: Thanks!
0
votes
1answer
260 views

Google Charts compound charts after deprecation

I am using Google Charts to draw compound charts, similar to the one depicted below (bar charts and line combined). Just learned that it has been deprecated. It seems the replacement is Google ...
0
votes
1answer
359 views

Google Chart json data feed

i'm using google piechart api and i need to data feed with google DataTable. i have an ajax callback in page.. after callback i m parsing json data and i need to set google dataTable while json ...
1
vote
2answers
2k views

How to load dynamic data into google pie chart?

I am using an ajax function to get data for rendering Google Pie chart and loading those data in javascript but some how the Pie chart is not rendering but when i hard code the AJAX output into ...
3
votes
1answer
215 views

Google Line Chart: can I insert error bars?

Cheers all. I'm using a line chart, created with the Google API for draw charts (this chart). It's working well, but now I have a problem. I have to insert some error bars or something similar (for ...
0
votes
0answers
177 views

how to pass the value from iPhone application to google chart api url

hi every body i am new in iPhone application development. In my application need Piechart so i am used google chart api i got that piechart image. but it displayed static only. how to give value in ...
2
votes
2answers
2k views

Loading a Google Chart via Ajax

I've put together a simple expenses tracking page and I'm currently trying to load a Google chart using .load() - however when I load my page I receive this error: google is not defined function ...
1
vote
1answer
181 views

Google Line Chart starting coordinate?

How to set the line chart setting so lines begin at x:0 , and not in some random way? Is there a prop for this, or i need to stack up more data????
1
vote
2answers
489 views

Place values on google graph

How can i place values on the 'google.visualization' graph ? please see image attached. var options = { width: 1024, height: 240, title: 'Clicks from Welcome email', vAxis: ...
0
votes
1answer
23 views

Google charts duplicating inexistent rows

I've a google charts loading data from json but it is duplicatin the rows and i don't know why. (see image) My code is hosted here: http://jsfiddle.net/seinoxygen/U5Mqw/ I really can't figure why :( ...
1
vote
1answer
784 views

using google chart api with sql

so i'm trying to use sql statements in google charts api, but i'm not sure how to do this... i know we arent supposed to use javascript for sql (although it is possible) s i was wondering how in the ...
0
votes
1answer
392 views

custom labels for xAxis on Scatter Chart using Google API

I'm new to the google-api, and i'm trying to whip together a quick chart. What I have 10 | . . | . 5 | . . | . 0 |_______________ 1 2 3 4 ...
-2
votes
1answer
125 views

google graph is not working in colorbox or superbox [closed]

if i m directly run the page then it will generate the graph. but i m trying to load graph in colorbox or superbox it can not be load. Pleas give me any idea why it is not working? It is possible or ...
1
vote
1answer
389 views

Insert database data into Google charts?

I'm thinking about going with Google charts for a project I'm working on. I have all my data on my own server and so I was wondering what is the best way to go about inserting this data into a chart, ...
3
votes
3answers
3k views

Is Google Chart Tool Api is free to use

Is Google Chart API free to use? If so, where can I find its documentation?
6
votes
4answers
4k views

Google dashboard with filters from grouped data - how to chart grouped data

I am looking to create a Google charts API dashboard with filtering but I would like to chart the data based on grouped data. For example, I can create a datatable such as this: salesman cust_age ...
2
votes
1answer
465 views

Any way to create a simple timeline with Google Charts?

Is there any way to create a simple timeline of events with Google Charts? (I don't mean an annotated timeline.) In my case, I'd like to display a series of event times (not time intervals) in ...
3
votes
2answers
3k views

Google Charts API datetime unix format?

I'm having a hard time getting Google Charts to understand the datetime format. I used an example [1] where the datetime format is set to a simple month day and year, but I changed it to take an input ...
3
votes
1answer
1k views

Google Visualization: Column Chart, simple question but can't find the answer

http://code.google.com/apis/visualization/documentation/gallery/columnchart.html I'm using the above api to create an interactive column chart. I would like a numeric text shown above each bar which ...
0
votes
1answer
3k views

Display Lines AND Points on the Line Chart - Google Visualisation API

Is it possible to represent one data series as points and another as lines? In the chart below I want the blue 'Data' line to be represented as points whilst retaining the other series as lines, can ...
4
votes
2answers
653 views

Is data sent to Google when using the Google Visualisation API?

I am developing a web app for a client and I want to use the Google API's to draw some nice graphs. The client has some sensitive data and has raised some concerns about security, specifically, they ...
1
vote
1answer
452 views

How to label my bar chart with numbers?

I am using gchart and I am trying to use markers to label my bar char with numbers. So that ever bar has a number value on top of it. I tried markers: [$.gchart.marker('number', 'red', -1)] markers: ...
0
votes
1answer
703 views

How do I add numbers on top of my bar graph (google chats)

H I want to add numbers a top a bar graph using the goole chart api what I want That is what I want. It is an example from the home page. When I look at the options for bar charts I don't see ...
0
votes
1answer
50 views

Plotting the line graph

i have this google charts call which is plotting a line graph...my question is how ...
0
votes
1answer
31 views

Why does this print nothing?

I am following there instructions to get a chart up and running and i cant seem to see why this chart is not displaying the data...maybe its late and i cant see the problem ...
0
votes
1answer
415 views

Issue with legend pagination (Google Interactive chart API)

I am using google interactive chart for showing chart like linechart, barchart, piechart etc. I am showing legends in the top of chart. For long legends, the legends are appearing in terms of ...
2
votes
3answers
453 views

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 ...
2
votes
0answers
434 views

Google SQL Pivot make 0 show NULL

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: ...
2
votes
2answers
1k views

Font Family Selection With Google Charts?

Is it possible to set font-family for any of the non-flash Google chart visualizations? Specifically for things like the text on the chart axis. Google charts is powerful, but ugly. And unfortunately ...