Created
November 15, 2013 12:19
-
-
Save shazdeh/7483479 to your computer and use it in GitHub Desktop.
Custom chart options (Flat theme)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function custom_chart_vars( $options ) { | |
return array( | |
'trackColor' => '#f2f2f2', | |
'scaleColor' => false, | |
'lineCap' => 'butt', | |
'rotate' => 0, | |
'size' => 170, | |
'lineWidth' => 22, | |
'animate' => 2000 | |
); | |
} | |
add_filter( 'themify_chart_init_vars', 'custom_chart_vars' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment