Easypiechart.js plugin not working

I am trying to use the easypiechart, but i don’t know why it is not showing any thing…

i add the easypiechart.js and the below code before the </body>

<script type="text/javascript">
    $(function() {
        $('.Chart').easyPieChart({
            //your configuration goes here
            size:170,
            animate: 2000,
            lineCap:'butt',
            scaleColor: false,
            barColor: '#ccc',
            lineWidth: 10
        });
    });
</script>

in my html i call the piechart using this code…

 <div class="Chart" data-percent="73"><span class="percent">73%</span></div>

the result look like…

73%

there is no circle show arround 73%.

please solve with example code…

It works for me. Have you added other things like the css? Can you please give us a test page that demonstrates the problem you are having?

yes, i added the easypiechart.css file in the head section, and in the body section i first add the jquery.js and then easypiechart.js file, but it still not showing any circle?

Okay - it’s still working for me so the only way to figure out what you’re done wrong is to see what you have done.
A test page somewhere that demonstrates what you have currently done seems to be the best way to go from here.

Thanks for your replay, i solved it, and the issue is that i call the easypiechart before the easypiechart.js file, i just replace it after the easypiechart.js file and it start working…

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.