Remove space between bars of Google histogram chart in Angular

163 Views Asked by At

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

There are 1 best solutions below

2
Kelum Bandara On

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