Tagged Questions
0
votes
1answer
109 views
gannt chart formed by google bar chart: different color to each bar
I have the following sort of gantt chart coded up using Google Charts, but I would like to assign different color to each bar. Now in my case since I am assigning a transparent color to spacer , I ...
0
votes
0answers
148 views
Google Bar-Chart( Having Filter) With Different Colors in Bars for each collumn
Bellow is my javascript for google-chart
<script type="text/javascript">
google.load('visualization', '1.1', {packages: ['controls']});
...
1
vote
2answers
88 views
Specific case of Timeline chart
I am trying to create a timeline chart which is supposed to be represented like a horizontal bar chart where the horizontal bars may not have the same starting point. So it might look like this-:
...
1
vote
1answer
40 views
Bar chart with values placed on the chart instead of in tooltip
i'm trying to create some charts with google charts api. I need a bar chart with values placed directly on the chart (not on the tooltip which is set by default). I know that it was possible in Image ...
-1
votes
1answer
69 views
Grouped Stack Bar Chart using Google Chart
I want to create chart as this:
Demo!
Any one know if we could draw this kind of chart using Google Chart?
0
votes
0answers
56 views
How to show negative values as positive in axes, Google Chart Tool?
I use Barchart from Google Chart Tools and I need to get vertical axe with values like here:
3 2 1 0 1 2 3
instead of normal 3 2 1 0 -1 -2 -3.
How can I do it with API?
0
votes
2answers
1k views
How to bring 3D effect in google chart?
In google chart, for pie-chart it is easy to bring 3D view by just adding 'is3D':true. But how we can able to get 3D effects for bar, column & combo charts, shown in this demo
0
votes
1answer
224 views
Google Charts C# API Overlapping Bar Chart
Hi I'm trying to leverage the C# GCharts API however absolutely need 'overlapping' not 'stacked' bar chart functionality. Is there a way to acheive this throuhg the API .. I'm looking into some jQuery ...
0
votes
1answer
171 views
working bar charts/tables with sproutcore
I am currently working on a task which want to display bar charts/tables on the website.
The application is using: sproutcore (1.6) as front-end, Java Restful as backend.
However, I can't find some ...
0
votes
1answer
394 views
Draw a line above bar chart
In the old static image Google charts I have been producing a combined chart like this one:
It has 3 series (the bars drawn in dark green, light green and pink - on the top) and then it is ...
1
vote
1answer
943 views
Google chart Y axis not in scale with chart bar
I have been playing with google charts for the first time. I have created a graph that can be viewed at
Google chart link
...
0
votes
2answers
854 views
Google charts- changing orientation of bars in a bar chart
I'm trying to create a bar chart with two series of data. I want one series to be drawn to the right, and one series to be drawn to the left.
If I put negative values in for Austria, then it will ...
2
votes
1answer
3k views
getSelection() to get data from row in Google Chart API
I'm trying to trigger the creation of a new BarChart with Google's Chart API when a user clicks on a particular bar. I think I understand the concepts, and wanted to at least get the getSelection() ...
0
votes
1answer
746 views
Centered bars on a Google Chart BarChart?
Is there a way to use the Google Chart Javascript API to center bars on a bar chart similar to this - Google Chart Example? I would like to emulate a funnel graph wih Google Charts. Google Charts does ...
1
vote
0answers
129 views
PHP _google chart _ multiple files' data in 1 graph … how to ? _ basic question
In google chart,
<img src="<?php print $barChart->getUrl(); ?>" /> <br> for today. is used to create the img corresponding to the graph.
I have used LOOPS to read multiple ...
0
votes
1answer
798 views
Google Pie Chart and Bar Chart (both Interactive) not showing labels
I'm trying to put Google's BarChart and PieChart both the client side version, and i'm experiencing some problems with the labels over the pie and the labels on the left of the vertical axis (of the ...
3
votes
2answers
600 views
PHP: Help formatting Google (bar) charts
I'm trying to make a horizontal bar chart with data from an array
$values = implode(',', array_values($type));
$labels = implode('|', array_keys($type));
$img = ...