Closed (won't fix)
Project:
Charts
Version:
6.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
22 Jun 2011 at 10:54 UTC
Updated:
26 Jul 2013 at 01:47 UTC
$data['chts'] .= isset($value['#color']) ? $value['#color'] : '000000';
$data['chts'] .= ',';
$data['chts'] .= isset($value['#size']) ? $value['#size'] : 14;
replace with
$data['chts'] = isset($value['#color']) ? $value['#color'] : '000000';
$data['chts'] .= ',';
$data['chts'] .= isset($value['#size']) ? $value['#size'] : 14;
Comments
Comment #1
quicksketchThe D6 version of the module is no longer being updated. If this problem exists in the 7.x-2.x branch of the module please reopen.