2

GVizを使用して作成したチャートが次のようになっています。 階段状の面積と縦棒グラフ

これはコンボチャートであり、1つのシリーズは列として表示され、もう1つのシリーズは階段状の領域として表示されます(不透明度0%、connectSteps:false)。行は各列の中央にドットしか表示されないため、使用したくありません。

目標金額を表すため、行を列の上に表示しようとしています。データ列の順序を入れ替えてみましたが、同じように表示されました。シリーズにz-indexを指定する方法はありますか?

補足:これはGoogleサイトのグラフですが、HTMLを編集することで、GVizで利用できるほとんどのオプションを指定できます。私はすでにドキュメントを調べましたが、これを行うための何かを見たことがありません。

4

1 に答える 1

2

現在、コンボチャートのZ軸を調整する方法はありません(そのため、実行しようとしていることを実行している方法で実行することはできません)。

ただし、注意が必要な場合は、XY散布図を使用して同じ種類のグラフを再作成できます。

例(Google Playgroundにコピーアンドペースト):

<!--
You are free to copy and use this sample in accordance with the terms of the
Apache license (http://www.apache.org/licenses/LICENSE-2.0.html)
-->

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>
      Google Visualization API Sample
    </title>
    <script type="text/javascript" src="http://www.google.com/jsapi"></script>
    <script type="text/javascript">
      google.load('visualization', '1', {packages: ['corechart']});
    </script>
    <script type="text/javascript">
      function drawVisualization() {
        // Create and populate the data table.
        var data = new google.visualization.DataTable();
        data.addColumn('number', 'X');
        data.addColumn('number', 'Sales');
        data.addColumn('number', 'Targets');
        data.addRows([
          [1, 0, null],
          [1, 1, null],
          [1, null, null],
          [2, 0, null],
          [2, 3, null],
          [2, null, null],
          [3, 0, null],
          [3, 3, null],
          [3, null, null], 
          [0.5,null,1.5],
          [1.5,null,1.5],
          [1.5,null,null],    
          [1.5,null,2.5],
          [2.5,null,2.5],
          [2.5,null,null],    
          [2.5,null,3],
          [3.5,null,3],
        ]);

        // Create and draw the visualization.
        var chart = new google.visualization.ScatterChart(
        document.getElementById('visualization'));
        chart.draw(data, {
          width: 600,
          height: 400,
          series: {0:{color: 'black', lineWidth: 40, pointSize: 0}, 1:{color: 'red', lineWidth: 10, pointSize: 0}}  });
      }

      google.setOnLoadCallback(drawVisualization);
    </script>
  </head>
  <body style="font-family: Arial;border: 0 none;">
    <div id="visualization" style="width: 600px; height: 400px;"></div>
  </body>
</html>
于 2013-01-09T08:23:34.060 に答える