Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zero percent still renders as dot (jQuery) #189

Open
rueggerc opened this issue Jan 22, 2017 · 1 comment
Open

zero percent still renders as dot (jQuery) #189

rueggerc opened this issue Jan 22, 2017 · 1 comment

Comments

@rueggerc
Copy link

When I try to use easy-pie-chart with 0%, I'm still seeing a small dot being rendered at top:
See screen shot.
Any idea what I'm doing wrong?

easypiechart0

I'm using jQuery 1.12.4

HTML:
piechart-html

JS:
// PieChart
$('.chart').easyPieChart({
scaleColor: false,
barColor: 'green',
trackColor: '#e5e5e5',
size: 110,
onStep: function(from, to, percent) {
$(this.el).find('.percent').text(Math.round(percent));
}
});

CSS
.chart {
position: relative;
display: inline-block;
width: 110px;
height: 110px;
margin-top: 50px;
margin-bottom: 50px;
text-align: center;
}

.chart canvas {
position: absolute;
top: 0;
left: 0;
}

.percent {
display: inline-block;
line-height: 110px;
z-index: 2;
}
.percent:after {
content: '%';
margin-left: 0.1em;
font-size: .8em;
}

@xyqfer
Copy link

xyqfer commented Jan 24, 2017

try set lineCap to butt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants