If you’re attempting to configure a Google Business App domain name for an email address alias and you’re running into this error: DNS server returned answer with no data Remember to setup the Google MX records after validating your domain name with Google. This is the next step in the Google -> Domains section for […]
Category: Google
Make Google Charts Responsive
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(); });