thysultan / cssCharts.js

jquery plugin to create donut and bar charts with css
http://thysultan.com/projects/cssCharts/
45 stars 11 forks source link

Data-percentage Error #9

Closed gouthamai closed 8 years ago

gouthamai commented 8 years ago

When we set the data-percentage to 0.14. the donut chart displays as 14.000000000000002% instead of 14%

We used the below code to get it fixed.

Line no 192 : $({countNum: $title.find("p").text()}).animate({countNum: val/360*100}, { to $({countNum: $title.find("p").text()}).animate({countNum: parseFloat(val/360*100).toFixed(2)}, {

thysultan commented 8 years ago

Fixed.