Remove space between bars of Google histogram chart in Angular

Viewed 20

I am using google histogram chart in my angular application, But i am unable to remove the space between the bars. enter image description here

1 Answers

Set the bar.groupWidth to 100%. Following image is from the documentation. You can either specify the width using percentage or pixels.

enter image description here

   bar: {
        groupWidth: '100%'
    }


chart.draw(data, google.charts.Bar.convertOptions(options)); 

JSFiddle

Related