To make google charts responsive to browser resizing and mobile devises, set the width option to 100%:
var options = {width: "100%"}
Then, redraw the chart every time the page is resized:
$(window).resize(function(){
drawChart();
});
To make google charts responsive to browser resizing and mobile devises, set the width option to 100%:
var options = {width: "100%"}
Then, redraw the chart every time the page is resized:
$(window).resize(function(){
drawChart();
});