Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using a drupal module using google charts. I have created the graph successfully but my problem is that I want to put integar values in the Y axis. I am making a graph of total number of votes. So lets suppose if i have a total votes on poll is 55 then the y axis range should be till the max value propeerty.. like if we have A B C...A has 25 votes B has 10 votes and C has 20 votes. So the y axis range should be equal to 25 with no float values like 1.5 2.5 between them. here is the code of my function.

//theme the poll results block

  $html = $variables['results'];
  $pattern = "@class=\"text\"\>(.*)\</div\>@";
  preg_match_all($pattern, $html, $choices); //extract choices
  $pattern = "@style=\"width: (.*)%;\"@";
  preg_match_all($pattern, $html, $votes); //extract percentages
  $chart = array(
      '#chart_id' => 'poll_chart' . $variables[nid],
      '#type' => CHART_TYPE_BAR_V,
      '#size' => chart_size(600, 350),
      '#grid_lines' => chart_grid_lines(100,10 ),
      '#bar_size' => chart_bar_size(30, 50),
  );


// NEED TO FILL IN DATA TO MAKE CHART
  for ($c=0; $c < count($choices[1]); $c++) { //make labels and values
     $chart['#data_colors'][] = 'ff8e07';
     $chart['#data'][$choices[1][$c]] = $votes[1][$c]; //number of votes
     $chart['#legends'][] = $choices[1][$c] . " (" . $votes[1][$c] . "%)"; // labels
     $chart['#mixed_axis_labels'][CHART_AXIS_X_BOTTOM][0][] = chart_mixed_axis_label(t($choices[1][$c]))
     ;
     print $choice['chvotes'];
  }



  $chart['#mixed_axis_labels'][CHART_AXIS_X_BOTTOM][2][] = chart_mixed_axis_label(t('Choices'), 50);
  $chart['#mixed_axis_labels'][CHART_AXIS_Y_LEFT][1][] = chart_mixed_axis_label(t('Votes'), 95);
  $chart['#mixed_axis_labels'][CHART_AXIS_Y_LEFT][1][] = chart_mixed_axis_range_label(0, $variables['votes']);

  $variables['results'] = chart_render($chart); //render graph
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.