Having an issue where datavalues are overlapping each other in a multiseries 2dline/MSLine chart.
PHP chart configuration:
$chart_options = array(
'chartType' => 'MSLine',
'height' => '500',
'width' => '700',
'chartParams' => array(
'caption' => 'Total Cost Trend ($)',
'subCaption' => '('.date('m/Y',$start).' to '.date('m/Y',$end).')',
'xAxisName' => $xAxisName,
'numberPrefix' => '$',
'numberSuffix' => '',
'decimalPrecision' => '0',
'numDivLines' => '5',
'formatNumberScale' => '0',
),
'exportEnabled' => true
);
You can see the values we are putting in the graph in the screenshot.
We are calling addDataset like this: addDataset($site_identifier,'showValues=1;');
What can we do to avoid overlapping value labels?
Screenshot attached.