Hi ,
When I generate a chart its lower border is clipped. This is happening for all charts. Any idea why? Its not overlapping the next chart and if I drag and adjust any one chart in the page, then the others clipping is removed. Please see https://photos.app.goo.gl/i2x5geDc43zwHIyH2.
The array used for generation is given below. Any suggestion guys ?
$args = array(
'data' => $data,
'type' => 'barChart',
'color' => $chartcolor,
'title' => $group->title,
'sizeX' => 17,
'legendPos' => 'none',
'border' => 1,
'vgrid' => 0,
'hgrid' => 1,
'scalingMin' => '0.0',
'scalingMax' => $account->ratingMax,
'majorUnit' => 1.0,
'minorUnit' => 0.0,
'showValue' => true,
'chartAlign' => 'left',
'showTable' => false,
'font' => "Arial",
'groupBar' => 'clustered'
);