Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created November 15, 2013 12:19
Show Gist options
  • Save shazdeh/7483479 to your computer and use it in GitHub Desktop.
Save shazdeh/7483479 to your computer and use it in GitHub Desktop.
Custom chart options (Flat theme)
<?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