当我尝试使用0%的简易饼图时,我仍然看到在顶部/ 12点位置呈现一个小点。
参见屏幕截图。下面是HTML / JS / CSS。
知道我做错了吗?
rendering of 0% HTML:
<span class="chart" data-percent="25">
<span class="percent">25</span>
</span>
JS:
$('.chart').easyPieChart({
animate: 2000,
scaleColor: false,
lineWidth: 12,
lineCap: 'square',
size: 100,
trackColor: '#e5e5e5',
barColor: '#00FF00',
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;
}
答案 0 :(得分:0)
你没有做错任何事。我不知道其中一个是你的,但有几个similar issues on plugin's GitHub page。
插件画一条线。在这种情况下,它在0处开始一条线,在0处结束并应用3px厚的笔划,其圆形端盖在起点处创建一个小点。
在您的代码中,您可以检查值是否大于0并且根本不显示它,或者在GH上点击并等待修复。
答案 1 :(得分:0)
您可以设置barColor = trackColor
:
$(document).ready(function(){
var charts = $('.percentage');
charts.easyPieChart({
animate: 1000,
onStep: function(value) {
this.$el.find('span').text(~~value);
if(this.percentage == 0)
this.options.barColor = this.options.trackColor;
},
});
});
的 DEMO 强>