如何使用BarChart google api进行线性图表

时间:2014-01-10 14:34:02

标签: google-visualization

我想显示一些人的投票,我想在横轴上只接受非十进制值并使其成为线性(应该是默认行为,我认为它不是从零开始,而是从我的1开始是线性的)应用...

以下是haxis配置的源代码。

hAxis: {
      title: t('shared.new_top_bar.votes'),
      # Don't display negative values
      min_value: 0,
      gridlines: {
          #color: '#878787',
          count: -1
      }
  }

目前我得到了:

enter image description here http://i.stack.imgur.com/gh1Db.png

1 个答案:

答案 0 :(得分:0)

所以,我发布了我为帮助下一个人做的事情:

{
      width: 550,
      height: 200,
      #colors: @colors,
      title: vote.question,
      backgroundColor: {
          fill:'transparent'
      },
      is3D: true,
      # Displays items even if the value is 0
      sliceVisibilityThreshold: 0,
      legend: {
          alignment: 'center'
      },
      animation: {
          duration: 1000,
          easing: 'out'
      },
      # Don\t display decimal values.
      hAxis: {
          title: t('shared.new_top_bar.votes'),
          # Don't display negative values
          gridlines: {
              count: data_votes.max() + 1# 0 count!
          },
          viewWindow: {
              min: 0,
              max: data_votes.max()
          }
      }
  }

计算hAxis是因为我只需要十进制值,我必须明确地进行。