web-dev-qa-db-ja.com

Webフォームの結果データをGoogleチャートに表示する

Webフォームの結果を Google Charts として表示しようとしています。私は、テーマのtemplate.phpファイルでtheme_webform_results_analysis()をオーバーライドし、 Chart module を使用して、テーマレイヤーでこれを行っています。 Drupal 6.22、 Webform 6.x-3.11。

通常、webform分析ページはデータをテーブルに表示するので、そのテーブルの配列をハッキングして、内容を Chart API に渡します。

[〜#〜] edit [〜#〜]:var_dumpの使用方法を理解し、より良いアプローチは$ row_data配列と$ questions配列を別々に(両方の配列のマッシュアップであるこの質問の最初のバージョンで使用した$ rows配列を使用する代わりに)。

EDIT#2:元の$ questionsと$ row_data配列の各部分を取得する方法を発見したと思います(以下を参照-foreachのforeach他のforeach)。だから今、私はそれらのピースを適切な配列に入れ(質問ごとに1つ)、それらすべてを反復する方法を見つける必要があります。

これがtemplate.phpにあるものです:

/**
 * Output the content of the Analysis page.
 * @see webform_results_analysis()
 */
function mytheme_webform_results_analysis($node, $data, $sids = array(), $analysis_component = NULL) {

  foreach ($data as $cid => $row_data) {

    if (is_array($row_data)) {

      // get the questions, put them in an array
      $questions = array();
      $questions[] = array('data' => check_plain($node->webform['components'][$cid]['name']));

      // this will print everything out in the right order - it really needs to
      // make an array for each question that looks like $test_chart below
      foreach ($questions as $question) {
        print $question['data'] . '<br />'; // questions 
        foreach ($row_data as $key => $value) {
          print $value[0] . '<br />'; // labels
          print $value[1] . '<br />'; // results 
        }
      }

      // Set up the chart
      $chart = array(
        '#chart_id' => 'webform_analysis',
        '#type' => CHART_TYPE_PIE_3D,
        '#size' => chart_size(658, 250)
      );

      // not real data here, this just shows the format I'm shooting for
      $test_chart = array(
        'option 1' => '12',
        'option 2' => '45',
        'option 3' => '122'
      ); 

      // separate the above array into labels and values, add a percentage to the label
      foreach ($test_chart as $key => $value) {
        $chart['#data'][] = $test_chart[$key];
        $chart['#labels'][] = strip_tags($key) . ' (' . round($test_chart[$key], 2) .  '%)';
      }
      // pick some colors
      $chart['#data_colors'][] = 'b0c73d';
      $chart['#data_colors'][] = '667323';
      $chart['#data_colors'][] = '221f1f';

      $output = chart_render($chart);    
    }
  }

  if (count($row_data) == 0) {
    $output = t('There are no submissions for this form.');
  }

  // return the data that goes into chart function, just for testing
  // return $chart_data; 

  // someday, this might return a set of webform charts. right now it returns the fake test chart
  // return $output;
}
11
Sarah German

別のDrupal Webフォームのサポートを提供するチャートモジュール: http://drupal.org/project/fusioncharts

Fusionchartには、fusioncharts_webformという小さなサブモジュールがあります。

2
ipwa

それから3年以上経った今、私は知っていますが、それ以来、状況は少し進化しています...

この質問のタイトルのみを考慮することで、最近は Charts モジュールを介してこれに対処することができます(元の質問は別のモジュールである Chart から始まります)。そして、これを Webform Chart または Webform Charts と組み合わせて使用​​します。

今日の実際のニーズに応じて、これらの2つのWebform関連モジュールを使用すると、サイト構築アクティビティによって多くのことを達成できるようです(おそらくDrupal開発者のスキルは必要ありません)。参照これらのWebform Chart(s)モジュール(および興味深いディスカッションへのリンク)の詳細については、 Chartsモジュールによるチャート作成を容易にするモジュール の箇条書き5を参照してください。

最近、他の潜在的な代替手段として チャートモジュールの比較 を使用してください(そして、利用可能な数十のチャートモジュールについて本当に混乱する準備をしてください...)。

注意:私は Chart および Charts の新しい(共同)メンテナーであり、 チャートモジュールの比較 の作成者です。私は、Quickformの(驚くべき)チャートへの貢献を続けようとしています。チャートは、Webformのメンテナーでもあり、Webform ChartS( 's'付き)でもあります。

PS:混乱している* chart(s)名前空間をごめんなさい、私はそれらを発明しませんでした...

1
Pierre.Vriens