Reputation: 1384
Is there anyway to change the image rendered in magento admin chart? I basically want to change the colors and shadow. Thanks
Upvotes: 2
Views: 569
Reputation: 2384
You can find the color in app/code/core/Mage/Adminhtml/Block/Graph.php in the getChartUrl() method.
$params = array(
'cht' => 'lc',
'chf' => 'bg,s,f4f4f4|c,lg,90,ffffff,0.1,ededed,0',
'chm' => 'B,f4d4b2,0,0,0',
'chco' => 'db4814'
);
f4f4f4 => color of the background
f4d4b2 => color of the line
db4814 => color of the under the line part
To change this, just rewrite this block in your own module to change this function
Upvotes: 4