1
vote
1answer
53 views

Convert html+css+js to PDF

I want to create something like this (code is here): in pdf format. I'm using google charts and regarding to this forum converting chart to pdf is impossible. I've already tryied iText+XMLWorker, ...
0
votes
1answer
21 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
2answers
65 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 ...
0
votes
0answers
59 views

Strange Error when using chartEditor of Google Visualization API

I have a strange error when I want to use the chartEditor of Google Visualization API in my GWT project I use The JavaScript Native Interface (JSNI) feature of GWT because the visualization wrapper ...
3
votes
1answer
89 views

Understanding data privacy with Google Web Toolkit, and Google Charts

I have been playing around with GWT and GWT Visualization Wrapper API. One thing I learned recently is that GWT Visualization API does not work without an internet connection (I was working offline ...
-2
votes
1answer
119 views

How to generate clickable pie charts using GFlot [closed]

My requirement is to generate pie charts in my project. Currently we are using google charts API with GWT to generate pie charts. They are good and providing every function that we required But ...
0
votes
0answers
308 views

GWT Google Charts - x value is in minutes - how to format x axis labels as hours?

I'm trying to draw a graph where the x value represents number of minutes within a duration. I want to display number of hours as labels on the x axis, and when I hover the graph (showing the ...
0
votes
2answers
420 views

ComboChart with annotation text in gwt google-visualization

I'm using gwt-visualization (a wrapper around Chart Tools). I have a ComboChart that includes two bar charts (stacked) and a line chart, and I want to add an annotation and annotationText to some ...
0
votes
0answers
122 views

GWT google Chart - PieChart Label

I just copy pasted this example from GWT google chart's http://code.google.com/p/gwt-google-apis/wiki/VisualizationGettingStarted but i ended up with this chart. It looks fine expect for the label ...
0
votes
1answer
412 views

Set colors on google piechart via dataTable JSON

I am using the chartWrapper to pull in some JSON. I am wondering how I would go about settings the colours for each segment on the piechart. //draw the channel summary data ...
1
vote
1answer
226 views

GWT googleCharts bar trimmed

I am using GWT api for google charts and having some issues: colums from the start and end values missing for the column chart BarChart width is trimmed is half for first/last value To ...
0
votes
1answer
101 views

GWT change chart options after drawn

Is it possible to change certain chart options for an already drawn chart (i.e. columnchart). The general idea of what I'm trying to accomplish is, I created a widget that contains a chart, and after ...
0
votes
1answer
243 views

running Google Charts with JavaScript in gwt HTMLPanel

I am trying to run a test chart from google chart example in a HTML Panel located in the middle of my webpage. There is a lot of customization that I would like to do with the chart, which is why I do ...
1
vote
2answers
146 views

Draw Charts side by side with gwt-visualization

i'm using the java gwt-visualization API in verison 1.1.2. I trie to add more than one Chart to a Flowpanel in order to display them Side-by-Side, but they are always displayed below each other. Do ...
0
votes
2answers
301 views

Google GWT Chart Tool set the space gap between bars

Anyone know whether it is possible to specify the space/grap between two bars in GWT-Chart-tool library?
0
votes
1answer
358 views

dashed lines with google Chart API in a GWT project

I am trying to make one of my lines in my Line Chart a dotted line. Here is my java code DataTable data = DataTable.create(); data.addColumn( ColumnType.NUMBER, "GaussianProcesses" ); ...
0
votes
0answers
168 views

How to set colors when using Google Charts DataTable roles?

I am using Google Charts DataTable Roles https://developers.google.com/chart/interactive/docs/roles experimental feature to draw intervals and annotations in graphs as specified in the above link. ...
0
votes
2answers
180 views

GWT Disappearing Charts Issue

I have several content panels, which I switch between, and several of them have charts. (ie. they use the google visualization api). The problem is that the first time you view a panel the chart ...
0
votes
1answer
390 views

GWT treemap add mouseover/mouseout events

I have written a google visualization treemap wrapper for GWT. I can successfully draw a treemap using it. But i am stuck with mouse events. How can i add mouseover/mouseout event to it? public ...
0
votes
2answers
311 views

GWT - Charts - Large Dataset getting unresponsive warnings

I'm working on learning GWT and made a little side project app that runs roulette system simulations. I'm rendering the results using the visualization API for GWT in a line chart. I've found if ...
2
votes
3answers
2k views

Add custom text to Google Visualization tooltip (using GWT API)

The following question almost entirely describes what I'm trying to to... Add custom text to Google Visualization tooltip ... basically to add extra information to google-viz tooltips. The accepted ...
0
votes
2answers
459 views

Google Finance style time series chart

I need to plot time stamped sensor data on a chart. There would be 3000 to 15000 data points in a day and I am looking for an interactive chart that is easy to navigate. Google Finance chart widget is ...
1
vote
1answer
550 views

google chart problem

I am using google gwt visualizations chart in gwt application. I want to show only 2d chart. but the following problems come. . In colums chart it show scale like 0.0 , 10.4 ,40.5 .... how to ...
0
votes
3answers
1k views

How to set the state of a Google Visualization Motion Chart?

I'm using GWT and the Google Chart Tools (aka Visualization) 1.1 Library of the Google API Libraries for GWT. I want to display a Motion Chart and to set the state as possible in Javascript. Has ...
1
vote
1answer
622 views

How to reverse y axis in an AreaChart

I am using Google Chart Tools (aka Visualization) 1.1 Library with GWT to display an AreaChart and I would like to know how to reverse the y axis? There is setReverseAxis(boolean) when you set the ...
1
vote
1answer
2k views

GWT with Charts API example from Google not working

I have downloaded http://code.google.com/p/gwt-google-apis/downloads/detail?name=gwt-visualization-1.1.0.zip&can=2&q= archive that comes with jar that is needed in order to use charts in GWT. ...