On my webpage, I have the following div elements:
<div><h2>Test</h2></div>
<div id="chart_div" style="width: 1200px; height: 600px;"></div>
Without any custom styling, only using the default Bootstrap 3 styles. However, the Google chart displayed has excessive empty space on the left side (refer to the screenshot). Is there a solution to adjust this?
Resolution Update: Following davidkonrad's recommendation, I included the following option in my chart settings:
chartArea : { left: 30, top: 30 }
This adjustment resolved the issue.