Hi all,
Below is url that chart I am using.
http://chart.apis.google.com/chart?cht=lc&chco=99C754&chs=400x150&chds=20,1&chd=t:1.0,1.0,1.0,1.0,1.0&chxt=x,y&chxl=0:|12/07/09|12/14/09|12/21/09|12/28/09|01/04/10&1:1|10|20&chxr=1,20,0,10&chls=2&chg=25,100,1,2&chm=o,54C7C5,0,-1,5&chxtc=1,15|0,15...
I want to create sparklines that illustrate the number of posts created on my blog in the last 2 weeks. To do this, I need to first generate an array that contains the number of posts created on each day during the period in question.
For example, this array:
[40, 18, 0, 2, 39, 37, 22, 25, 30, 60, 36, 5, 2, 2]
generates this sparklin...
Is it possible to set font-family for any of the non-flash Google chart visualizations? Specifically for things like the text on the chart axis. Google charts is powerful, but ugly. And unfortunately I can’t move to something nicer, like gRaphael.
...
I'm trying to load charts as images in a secured site. An example of a Google Chart image over https would be this:
http://www.google.com/chart?cht=lc&chs=200x125&chd=s:helloWorld
The problem is that while you can load an image like this by directly clicking the link, you can't include it as an image in your page. It just won...
Is there any way to make the background of the google charts transparent.
Google charts.
...
Hi All,
This is probably something really simple, however I am quite new to PHP, and havent done any HTML in years.
I need to get a PHP variable filled with an array of figures into Google Charts. My code for this so far is:
<img src="http://chart.apis.google.com/chart?
&chs=340x175
&chd=t:<?=$filedetail[1]?>
&cht=lc
&chtt=Test
">
H...
I have some code that loads an image file off the web and puts it in an image view. The problem is it works with everything except Google Charts. This is frustrating because I was relying on this to graph data for my app. Heres the url I need to load: Click to see my test chart. Im not sure why NSImage seems to refuse to load this when i...
I've just started using google charts and want to use it in a small project I'm workin on but I've bumped into a problem. The thing is I want the charts rather big at a static size and look good but I'm generating the charts dynamically with php. Now the problem is that I can't get it to scale properly in width but height is perfectly fi...
I have been looking for a graphing library to use in an upcoming web application, but I have two requirements that have been tripping me up:
Ability to save the graph as an image.
Show error bars on the points of line charts as well as bar charts.
I have found solutions to #1 by using flash charts or even the Google Chart API. Howeve...
Hello !
I was looking for some nice tool to generating charts and I think Google Charts will be the best. But I am wondering if there are some ready to use libraries to connect Google Charts with Zend Framework.
Did you use them both common ?
...
Im having a little bit of difficulty trying to figure out the best way to accomplish this.
I have 3 sets of data. Each set of data consists of 30 numbers. These numbers have nothing to do with each other, and may be way out of scope of one another.
Here is an example set:
Set 1: 15,15,15,16,17,21,26,35,43
Set 2: 4,12,40,109,120,179,20...
Take the following chart. Everything is as I want except the 2nd label, 'Two', is being ignored, and the first label is being centered beneath both bars. Any idea what I'm doing wrong?
http://chart.apis.google.com/chart?cht=bvg&chs=200x200&chd=t:10|80&chco=000000,333666&chxt=x,y&chl=One|Two
...
I have been experimenting with Google charts. Are there any alternatives that are reasonably as expressive but can be installed locally on your own web server? I don't like the idea of relying on an outside entity for a feature to work. Even if it is for cost, it would be preferable. Any suggestions?
...
This chart works fine in Google charts, but when rendered in Eastwood, it doesn't use the 2nd provided color, rather it applies the first color to both bars in the chart.
http://chart.apis.google.com/chart?cht=bvg&chs=150x150&chd=t:18,81&chco=FFF000|00FFFF&chxt=x,y&chl=Bar1|Bar2&chtt=Chart
Any suggestions as to...
Hi, I am encountering an issue with trying to load a google annotated chart (http://code.google.com/apis/visualization/documentation/gallery/annotatedtimeline.html) within a jquery ui tab using content via ajax method (http://jqueryui.com/demos/tabs/#ajax).
If instead I use the default tabs functionality, writing out the code things wor...
I have the following google chart code that im working with as an example:
Type: Line
Dimensions: 270x150
283,285,295,204,340,#41C0E4
64,120,130,170,175,180,#3962C2
1,2,5,12,28,34,#005E91
Bottom Label: test
The following is the URL which generates the image below
http://chart.apis.google.com/chart?chs=270x150&cht=lc&chtt=&...
I can't figure out how to load a datable using ajax/json. Here is my json code in a remote file (pie.json)
{
cols: [{id: 'task', label: 'Task', type: 'string'},
{id: 'hours', label: 'Hours per Day', type: 'number'}],
rows: [{c:[{v: 'Work'}, {v: 11}]},
{c:[{v: 'Eat'}, {v: 2}]},
...
I'm using google charts easy php class (here's the link of it)
and i want to draw Multiple Vertical Bar Chart,
as the documentation says "Separate multiple data sets with |"
so i try this , but nothing happens
$chart1=new googleChart($a | $b ,'bary' );
*note that both $a & $b are arrays
i would appreciate any help :)
...
I can't find in the Chart API the way to remove any axis from a bar chart. For instance:
cht=bvg
chs=410x150
chd=s:StackOverflow
How to remove the gray x and y axis?
...
Does any one know if it is possible to use the Default Google Scatter Chart in the Google Visualizations Gallery to draw a scatter chart that has both a series with points only, a series with a line of best fit and on top of this a set of lines across the chart indicating limits. i.e. at +/- 20% etc.
The chart we need is actually a Con...