- I am facing problem in getting multiple pie chart on my webpage.
- I got it from codepen, when i tried to implement more than one Pei chart in a page, it displayed errors in chart.
- Please check Codepen Link after Screenshots
Screenshots below :
Single Pie Chart - No problems
On addition of another chart, there are these data-set loading problems, it shows 5 fields in each chart instead of 3 and 2 respectively

HTML Code (please click Above Link for CSS & JS Code)
<main>
<section>
<div class="pieID pie"></div>
<ul class="pieID legend">
<li><em>Humans</em><span>718</span></li>
<li><em>Dogs</em><span>531</span></li>
<li><em>Cats</em><span>868</span></li>
</ul>
</section>
<!-- Un-commenting Below brings erro in first pie chart, how can i get to charts on same page? Thanks -->
<section>
<div class="pieID pie"></div>
<ul class="pieID legend">
<li><em>Slugs</em><span>344</span></li>
<li><em>Aliens</em><span>1145</span></li>
</ul>
</section>
</main>
