使用Google Charts仅堆叠两列

时间:2014-08-04 16:27:42

标签: charts

使用Google Charts工具,是否只能在我的数据集中堆叠两个(四个)列?

在Google的网站上,这是他们的榜样:

var data = google.visualization.arrayToDataTable([
  ['Genre', 'Fantasy & Sci Fi', 'Romance', 'Mystery/Crime', 'General','Western', 'Literature', { role: 'annotation' } ],
  ['2010', 10, 24, 20, 32, 18, 5, ''],
  ['2020', 16, 22, 23, 30, 16, 9, ''],
  ['2030', 28, 19, 29, 30, 12, 13, '']
]);

var options = {
  width: 600,
  height: 400,
  legend: { position: 'top', maxLines: 3 }, bar: { groupWidth: '75%' },
  isStacked: true,
};

如果我只想叠加,例如“浪漫与神秘/犯罪”,我该如何做?

0 个答案:

没有答案