不管酒吧条形图的数量多少,保持酒吧之间的空间不变

时间:2016-07-02 09:07:12

标签: javascript php google-visualization

我正在使用谷歌条形图并使用以下代码。

var options = {       
    backgroundColor:'',
    title: '',        
    chartArea: {width: '100%'},
    bar: { groupWidth:15},
    colors: ['#fff', '#fff'],
    hAxis: {
      title: '',
      minValue: 0,
      gridlines: {
          color: '#fff'
      },
      baselineColor:'#fff',

      textStyle:{
        color:"#000"
      }

    },
    legend: { position: 'none' },
    vAxis: {
      title: '',      
      textPosition:'none' 

    }
};

我得到以下输出

第一种情况:当条数更多时。

enter image description here

第二种情况:当柱数较少时。

enter image description here

第三种情况:当只有一个条形时,它显示在中心。我想从底部启动条形意味着靠近x轴。下面你可以看到屏幕截图。

enter image description here

我想在两个柱之间显示恒定的空间,而不管柱数。

在这种情况下的任何建议或建议?

0 个答案:

没有答案