Google图表工具 - 如何创建堆积条形图

时间:2012-05-04 02:19:24

标签: charts

  

可能重复:
  Can someone help me create a simple vertical bar chart using google charts?

我正在使用新的Google图表工具,我想创建堆叠条形图格式。

1 个答案:

答案 0 :(得分:28)

Google Developers网站提供了条形图格式的一些详细信息:https://developers.google.com/chart/interactive/docs/gallery/barchart

要叠加正常条形图,您需要使用isStacked: true选项。您可以将以下代码复制并粘贴到“图表工具”操场中以查看工作示例: http://code.google.com/apis/ajax/playground/?type=visualization

function drawVisualization() {
  // Create and populate the data table.
  var data = google.visualization.arrayToDataTable([
    ['Year', 'Austria', 'Bulgaria', 'Denmark', 'Greece'],
    ['2003',  1336060,    400361,    1001582,   997974],
    ['2004',  1538156,    366849,    1119450,   941795],
    ['2005',  1576579,    440514,    993360,    930593],
    ['2006',  1600652,    434552,    1004163,   897127],
    ['2007',  1968113,    393032,    979198,    1080887],
    ['2008',  1901067,    517206,    916965,    1056036]
  ]);

  // Create and draw the visualization.
  new google.visualization.BarChart(document.getElementById('visualization')).
      draw(data,
           {title:"Yearly Coffee Consumption by Country",
            width:600, height:400,
            vAxis: {title: "Year"},
            hAxis: {title: "Cups"},
            isStacked: true}
      );
}

您可能还对堆积区域图表感兴趣,具体取决于您尝试显示的数据。

还有一个问题,它使用图表工具图像API给出了堆积条形图的示例:Bar chart in Javascript: stacked bars + grouped bars

请注意,Google Chart Tools的图片图表部分已于2012年4月20日正式弃用。根据Google的弃用政策,图片图表仍会有效,但我建议您专注于描述的交互式HTML5 + SVG实施上方。