that does not seem to be it, took it to 60000 and no change
/////////////////////////////////////////////
// WIDGET FUNCTIONS
/////////////////////////////////////////////
var widgets = {
init: function() {
// CHARTS
if (sfIncluded.hasClass('has-chart')) {
jQuery('.chart-shortcode').each(function(){
jQuery(this).easyPieChart({
animate: 1000,
lineCap: 'round',
lineWidth: jQuery(this).attr('data-linewidth'),
size: jQuery(this).attr('data-size'),
barColor: jQuery(this).attr('data-barcolor'),
trackColor: jQuery(this).attr('data-trackcolor'),
scaleColor: 'transparent'
});
});
}