can I ask some help.How can I make the google org chart looks wider ? I mean the lines are stretching to occupy the space of the container something like this picture below.
EDIT:
Added code
var dt = new google.visualization.DataTable(data);
dt.addColumn('string', 'Name');
dt.addColumn('string', 'Manager');
dt.addColumn('string', 'ToolTip');
dt.addRows(data);
var chart = new google.visualization.OrgChart(document.getElementById('chart_div'));
chart.draw(dt, {allowHtml:true, allowCollapse:false, size:'small', size: 'medium'});
Here is my google orgchart it's not the same to the picture above.
set the size in your div tag: