Questions tagged [gchart]
61 questions
1
vote
1 answer
how do I display a googlechart in ruby?
I was wondering how to display a chart made with gchartrb in ruby. I tried to do it by simply requiring the picture from the URL given but that gives the error "Bad URI". how do I do it? thanks
require 'rubygems'
require 'google_chart'
# Pie…

Adam Ashwal
- 1,472
- 1
- 19
- 36
1
vote
1 answer
Unable to draw a google chart from firebase db
I want to visualize some simple sensor readings stored in firebase in a basic line graph from Google charts.
The data is structured like this:
KgPdzr3PgDaKVa73asd: {
date: "29/03/201
time: "15:21:07"
value:…

Shonningsoy
- 13
- 3
1
vote
5 answers
Client Side Graphing Tool that supports saving of the Graph?
I'm trying to find a graphing tool that runs clients side that will allow me to plot some data and then save the grpah. I have Tried FLOT http://code.google.com/p/flot/ but it does not support saving of the graph. I have tried gChart…

Josh
- 819
- 1
- 14
- 30
1
vote
1 answer
How can i add click handler to x-label element of gwt-visualisation chart
I am using gwt-visualisation chart
But is there any way to add click handler to x-label
Thanks

Tushar Ahirrao
- 12,669
- 17
- 64
- 96
1
vote
1 answer
Removing tooltip for one part of piechart google charts
I have a structure of chart like this:-
data: {
cols: [
{
id: 'Type',
type: 'string'
},
…

madhur
- 973
- 1
- 14
- 23
1
vote
0 answers
Use annonate to relabel x-axis in proc gchart
Suppose I have a bar chart that has groups and subgroups, I wish to relabel the x-axis which have existing names for the groups.
How can I use annotate to relabel this x-axis?

Lester
- 35
- 7
1
vote
1 answer
Google Charts PHP wrapper - image mapping on charts
I use the gchartphp wrapper to create various graphs. I'd like to know if it support image maps like gcharts does?
Say I have a pie chart showing backup stats (success, failed, missing email). What I want is to be able to click on say, success and…

iamjonesy
- 24,732
- 40
- 139
- 206
1
vote
1 answer
Google Charts Filter/Control chart based on hidden value
I have a scattor plot with the following data:
[ 'HDD', 'Oil Consumption']
['100','1000']
['50','500']
['10,'100']
Say each data point is taken from a specific date:
[ 'HDD', 'Oil Consumption', 'Date']
['100','1000','1 January 2015']
['50','500',…

Jglstewart
- 696
- 1
- 8
- 16
1
vote
1 answer
SAS: Force PROC GCHART to show empty columns
I create a chart with PROC GCHART. Assume the data looks like this:
Month Volume
Jan 2
Feb 4
May 19
Sep 7
When I create the graph with GCHART using Month and Volume, I get four bars. I would like to see the entire year though…

Berbatov
- 999
- 1
- 10
- 18
1
vote
1 answer
How to draw histogram chart for time series in SAS using proc gchart
I need to draw a histogram to make comparison between two series. I have the following code, but the proc gchart is not working.
data test;
input date $ irate ppi savings income cpi;
datalines;
JUN1990 8.43 114.3 2.412 83.83 …

Elif Y
- 251
- 1
- 4
- 21
1
vote
1 answer
Assign colors to vertical bars using proc gchart in SAS
In PROC GCHART, when creating a bar chart, the color of a vertical bar is determined by the PATTERN statement. The PATTERN statement assigns colors to the bars based on the alphabetical or hierarchical order of the values. How can I specifically…

Chad
- 149
- 4
- 11
1
vote
2 answers
SAS 9.3 goptions ignores gsfname
Sorry for my bad english :)
I need to export gif picture from SAS proc gchart:
filename graphout "&PATH.\file.gif";
goptions gsfname=graphout dev=gif gsfmode=replace;
proc gchart data=work.temp;
/*forming chart*/
run;
quit;
filename…

user2725854
- 11
- 1
1
vote
1 answer
Order of data displayed in a SAS proc GCHART HBAR statement
I have the following, but I wish to control the order in which the data is displayed. Instead of displaying the bars in the order of A, B, C, D, E, F, I wish to display the bars based on a user-specified ordering. For example, I would like to be…

synaptik
- 8,971
- 16
- 71
- 98
1
vote
2 answers
Is gchart safe to use?
The home page for gchart, a client side charting add-in for Google Web Toolkit (GWT), has a long screed about how the project's only maintainer thinks his Google account has been hacked and because of that he will be "disavowing/abandoning my own…

Paul Tomblin
- 179,021
- 58
- 319
- 408
1
vote
2 answers
ruby googlecharts issue
I am following instructions in this page
http://googlecharts.rubyforge.org/
Here is my code
Gchart.line(:data => data,:axis_with_labels => ["x"],:axis_labels => ["0","15","30","45","60"], :format => 'file', :filename =>…

icn
- 17,126
- 39
- 105
- 141