我正在尝试使用 Google Chart Tools 实现甘特图,但我在 Google 中没有找到正确的选项。我怎样才能做到这一点?
问问题
5254 次
1 回答
3
似乎没有开箱即用的甘特图控件。
https://google-developers.appspot.com/chart/interactive/docs/gallery
但是,您可以使用 Google Chart Tool API 创建甘特图,请参见:
代码
<img
title="Gantt Chart"
src="http://chart.apis.google.com/chart?cht=bhs&
chs=500x300&
chd=t:0,0,0,0,0,0|10,20,30,40,60,75|10,20,40,20,30,19&
chxt=x,y&
chxl=1:sad|Testing&
chxr=0,0,100|1,0,100&
chds=0,100&
chco=DC143C|DC143C,ffffff00&
chg=20,50&
chbh=20,10&
chtt=Gantt Chart&
chts=000000,25&
chdl=Project Test&chdlp=b"
alt="Google Charts Gantt Chart"
width="500"
height="300" />
于 2012-12-18T11:07:58.200 回答