All Questions
7 questions
1
vote
1
answer
322
views
Request had insufficient authentication scopes error when creating teacher through Google Classroom API
I'm trying to create assignments for students through the google classroom api. However, I've learned admins can not do that, only teachers. So in our code, after creating a new course we're then ...
1
vote
0
answers
1k
views
Line Chart Slider Implementation using google visualisation dashboard and controls
I am facing issue while implementing the slider control using google visualisation contorls. I have implemented numberRangeFilter as a control wrapper. i have datatable like this having following ...
2
votes
2
answers
3k
views
How to display the axis value using annotation in bottom of bar in stacked column chart of google api chart?
Here i am using stacked columnchart. In this chart i am trying to display annotation value. annotation value display in top of bar. but i need value displayed in bottom of bar.
Actual:
Excepted:
<...
1
vote
1
answer
371
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 ...
2
votes
2
answers
495
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
1
answer
2k
views
JDBC ResultSet to a DataTable in Google Visualization API?
Is there a general method to convert a JDBC ResultSet to a Google Visualization DataTable object?
It seems like there would be such a thing that uses ResultSetMetaData to create ColumnDescription ...
5
votes
2
answers
3k
views
Passing a DataTable object from JavaScript to Java
I am using the Google Visualization API on the client side and I create a DataTable object. Then I want to pass it to my server and upload it via the Spreadsheet API to a spreadsheet. Probably the ...