All Questions
31 questions
0
votes
1
answer
497
views
How to fetch arrayToDataTable() in GeoChart in Android?
var data = google.visualization.arrayToDataTable(JSON.parse(newRows), false);
I am not able to pass the data in arrayToDataTable() of var data, since newRows of string data is cannot able to fetch the ...
1
vote
1
answer
7k
views
Tomcat, service unavailable 503
My webapp uses JSP / JavaScript/ google visualization, and runs on Tomcat 7 on a 64bit windows server with enough resources dedicated to this app.It is still under testing, so, I have control over the ...
1
vote
1
answer
2k
views
Google Bar chart Bar color not changing
I'm using google bar chart to represent set of issues into different categories like open, closed, in progress etc., I'm getting the count of different categories and storing it to a hashmap, and ...
1
vote
1
answer
103
views
Google Visualization Line chart not able to show custom points
I am trying to show a line graph between Overs and Runs scored in each over by two teams.
function drawChart() {
season = document.getElementById('ipl_Seasons');
var jsonData = $.ajax({
url: "****...
2
votes
1
answer
753
views
country name not show on geochart
This is my code
<script type='text/javascript' src='http://www.google.com/jsapi'></script>
<script type='text/javascript'>google.load('visualization', '1', {'packages': ['...
0
votes
1
answer
2k
views
How to convert and download chart to pdf?
I m using jsPdf plugin and did this
var data = google.visualization.arrayToDataTable(dataValues,true);
var chart = new google.visualization.CandlestickChart(document.getElementById(id));
...
0
votes
1
answer
521
views
GWT Google Charts grow but don't shrink
I'm using GWT (version 2.7) and the Google Charts JavaScript API to draw a series of charts inside a GWT application.
I'm trying to display multiple charts in a scroll panel, with a data section on ...
0
votes
2
answers
1k
views
Error when passing Java object through GWT JSNI
I've got a GWT project that uses the Google JavaScript Chart API to show charts of Java objects. I convert my Java objects to JSON and hand them off to the JavaScript chart API through JSNI, and that ...
1
vote
2
answers
61
views
Bubbles are not withstanding till end of the visualization - Google Motion Bubble Chart
I was trying to populate my data with google visualization bubble motion chart (referred here). I have created a dynamic web project, added the Chart.html file in WebContent folder. Exported the ...
1
vote
0
answers
705
views
how to use google bar chart with spring mvc
what should be controller and how i can get my db values here dynamically
following is the google chart api link which i want to implement
google chart api
html
<script type="text/javascript" ...
1
vote
0
answers
338
views
HtmlUnit not rendering Google Charts
I am having trouble getting a Google Charts page to render in HtmlUnit 2.19.
I have the following java code:
public static void main(String arg[]) throws IOException{
String url = "http://...
3
votes
2
answers
3k
views
Google column chart random colors for dynamic data
I am trying to figure out a way to generate google column chart with each column in different/random color. Here are the details of the way I am generating charts:
Client/Javascript:
Using google....
0
votes
0
answers
140
views
How To Bind Google Visualization Data source Date values with Google Charts DateRangeFilter
I use REST services to fetch data into google charts.To create a chart supported json i used google visualization data source API to generate valid json obj.But the problem was that i can not create ...
0
votes
0
answers
391
views
Save an image on my server with javascript, jsp, html, java
I really need your help for saving a simple image generate with google charts on my server for using it on a PDF export.
My PDF export already works but I cant put my image in it.
For the creation ...
2
votes
1
answer
462
views
How to load GWT Visualization API over HTTPS
I'm trying to load the GWT Visualization Api to draw a chart like so:
Runnable onLoadCallback = new Runnable() {
public void run() {
LineChart chart = new LineChart(createTable(), ...