2016-11-28 39 views
1

的水平分工這是直方圖對谷歌圖表幾乎默認配置:谷歌圖表 - 柱狀圖:刪除項目

... 
var options = { 
       title: 'Some histogram', 
       legend: { position: 'none' }, 
      }; 
.... 

,這就是它呈現:

​​

如何我可以移除劃分形成直方圖的藍色「數據磚」的小水平分隔線(指向屏幕截圖)嗎?

回答

1

添加histogram.hideBucketItems: true到選項...

var options = { 
    title: 'Some histogram', 
    legend: { position: 'none' }, 
    histogram: { 
    hideBucketItems: true 
    } 
}; 
configuration options

...

histogram.hideBucketItems - 忽略直方圖的塊之間的薄分歧,使它成爲一個系列的堅實的酒吧。