Google Chart - 带有标签的条形图

时间:2013-10-31 22:02:09

标签: google-visualization

我正在尝试使用Google Chart API创建与此相近的内容:

what i'm trying to do

到目前为止,我已经有了这个:

<img src="//chart.googleapis.com/chart?
chbh=a
&chs=461x337
&cht=bvg
&chco=323232,7bc247&c
&chd=e:zM,Mz" width="461" height="337" alt="" />

哪个会产生这个

http://jsfiddle.net/alexjamesbrown/c2VAP/

几乎就在那里,但我无法弄清楚如何在条形图下方添加标签?

1 个答案:

答案 0 :(得分:1)

如果你想获得这样的标签,你必须做一些改变。设置以下图表参数:

cht=bvs                // create a stacked chart
chd=zM__,__Mz          // insert null values for the opposite data points
chxt=x                 // create an x-axis
hxl=0:|Label+1|Label+2 // set the labels on the x-axis ("+" translates to a space)

参见示例:http://jsfiddle.net/asgallant/c2VAP/2/