Questions tagged [gchart]
61 questions
0
votes
1 answer
how to de-clutter graph created using proc gchart?
I utilized proc gchart in SAS and the following code to generate the graph displayed here.
proc gchart data=combined;
vbar distrct / discrete type=sum sumvar=PERCENT
subgroup= population coutline=gray width=6;
run;
However, as you can see it seems…

Nathan123
- 763
- 5
- 18
0
votes
1 answer
rails chartkick gchart remove value on hover (tooltip)
I am using chartick and wanted to remove the word value(image below) from the tooltip on hover. So I will have Thu 33,406 instead of Thu value: 33,406
Is it possible since I am not using google chart directly?

mamesaye
- 2,033
- 2
- 32
- 49
0
votes
1 answer
Google Charts PHP MySql error
I am trying to acreate dynamic charts using Google charts and PHP MySql.
Here is what I am doing.
My PHP to get average of columns:

ssdesign
- 2,743
- 6
- 37
- 53
0
votes
0 answers
Displaying over 40k points on map
I'm writing a code to display devices via GPS on map. I am using gcharts the map package because of amazing details and zooming ability with actual cities layout. However at the gcharts tutorial there's a note that map can only handle up to 400…

Constantine Samoilenko
- 333
- 2
- 18
0
votes
1 answer
How can I display a single pie chart in SAS using gchart
So I have seven different fields/variables in a SAS table each containing 1's and 0's. I need to - if at all possible - display these seven variables in one single pie. Is this possible? If so how? When I do this: pie variable1 variable2 / options I…

Flemming Hald
- 83
- 9
0
votes
1 answer
Include github project into wordpress plugin
I would like to use the following php wrapper in my wordpress plugin.
PHP Object wrapper for the Google Chart API
However, the installation description says that composer has to be used, which I am not using for managing dependencies.(it`s a really…

Carol.Kar
- 4,581
- 36
- 131
- 264
0
votes
2 answers
Stacked bar using GChart with Java and GWT?
Could anyone help me with the code needed to get a stacked bar using gchart with Java under google web toolkit?

dirbacke
- 2,861
- 21
- 25
0
votes
1 answer
PHP: gChartPHP - adding visible values to pie charts
I'm using the gchart php wrapper from http://code.google.com/p/gchartphp/. This is a question for anyone out there using it.
Can you visibly display the values that make up slices of a pie chart?

iamjonesy
- 24,732
- 40
- 139
- 206
0
votes
2 answers
PHP: problem inserting array inside an array
I have a script that is using the google charts API and the gChart wrapper.
I have an array that when dumped looks like this:
$values = implode(',', array_values($backup));
var_dump($values);
string(12) "8526,567,833"
I want to use the array like…

iamjonesy
- 24,732
- 40
- 139
- 206
0
votes
1 answer
GChart on GAE wont show
I am using Eclipse with GAE on a MacBook Pro with GChart. My problem is that I cant get any chart to show when I am developing, but when I use regular tools such as Buttons or Labels with GAE they work just fine. The code doesn't give me any errors,…

dirbacke
- 2,861
- 21
- 25
0
votes
0 answers
google charts ruby How to create titles for axis?
I am currently using the google charts ruby api to draw my ROC curve. You can currently see it here: http://prntscr.com/8gnokp. (Below is the code).
roc_curve = Gchart.scatter(
:size => '600x400',
:title => 'ROC curve',
:data =>…

AlphaWolf
- 183
- 4
- 16
0
votes
1 answer
Sas Pie charts CrossHatched pattern
How do I add CrossHatched pattern to a pie chart in SaS (as simple as possible). I'm trying to read up on the pattern statement but I don't know how to just add the crosshatched pattern to my existing pie chart. So far the program looks like…

user3435733
- 19
- 1
- 1
- 3
0
votes
1 answer
google Chart not working as expected
This is an output of my json data.
[["Period","SOC","Control Signal","Charge/discharge"],
["00:00:00",60,0.01,0.01],
["00:01:00",58,0.01,0.01],
["00:02:00",56,0.01,0.01],
["00:03:00",55,0,0],
["00:04:00",54,0,0],
["00:05:00",53,-0.01,-0.01],
…

Friend
- 1,326
- 11
- 38
- 62
0
votes
1 answer
Tornado diagrams in SAS
There is an example "Tornado Diagram" here. I am trying to modify that code. Here is my modified version:
%let name=ex_17;
goptions reset=(global goptions);
GOPTIONS DEVICE=png xpixels=800 ypixels=600;
goptions gunit=pct border cback=lightgray…

synaptik
- 8,971
- 16
- 71
- 98
0
votes
0 answers
Gchart.php, dynamically filling dataset and legend
I am trying to make a chart using gchart.php.
It takes the data in this format:
$Chart->setLegend(array("blah", "bla2", "blah3"));
I have an array of forenames, the number of which could be anything, from 1 to 10 or higher.
I don't know the…

sleepysnake
- 21
- 4