How to make Line Chart stay with zero base

1

My line chart is starting at -5, I'd like the base to be at 0, does anyone know which setting to use?

    
asked by anonymous 01.09.2016 / 16:03

1 answer

1

I was able to solve it, I added it here in the options.

vAxis: {
            minValue:0,
            viewWindow: {
                min: 0
            }
        }
    
01.09.2016 / 16:26