Michel Arteta
Michel Arteta

Reputation: 1384

Magento Admin Chart Style

Is there anyway to change the image rendered in magento admin chart? I basically want to change the colors and shadow. Thanksenter image description here

Upvotes: 2

Views: 569

Answers (1)

dagfr
dagfr

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

Here are a test with other colors

Upvotes: 4

Related Questions