Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据系列,需要将条形图彼此相邻堆叠。什么 Google Visualization API 调用/属性可以帮助我完成这个?
设置bar.groupWidth选项。您可以将其设置为整数(组要占用的像素数)或可用空间的百分比。在您的情况下,我建议使用百分比:
bar.groupWidth
bar: { groupWidth: '100%' }
这将删除相邻条之间的所有空间。