var data = new google.visualization.DataTable(); data.addColumn('string','Pitch'); data.addColumn('number','Overall');data.addRows(3); data.setCell(0,0,'Whiff%'); data.setCell(1,0,'Strike%'); data.setCell(2,0,'GB Rate'); data.setCell(0,1,-2);data.setCell(1,1,-2);data.setCell(2,1,-2); var options = { bar: {groupWidth: '75.0%'}, width:270, height:135, backgroundColor:'#F2F2F2', legend: {position:'top', textStyle: {color: 'black', fontSize: 9}}, vAxis: {format:'#z', viewWindowMode:'explicit', baseline:-2, viewWindow:{max:2.2,min:-2.2},gridlines: {color: 'black', count:5}, minorGridlines: {count:1, color: 'black'}, textStyle: {color: 'black', fontSize: 10}}, hAxis: {textStyle: {color: 'black', fontSize: 11}}, chartArea:{left:20,top:20,width:250,height:100}, series: [ {color:'black', visibleInLegend: false}]};