【发布时间】:2014-04-22 21:43:56
【问题描述】:
我正在使用简易饼图:https://github.com/rendro/easy-pie-chart
一切都很好,除了百分比没有出现在圆圈中间,而是出现在左下角(圆圈外)。
我已经搜索了一个解决方案,我发现了这个:Easy Pie Chart : Bug percentage not centered?,但它没有解决问题(在我的案例中,类“图表”已经很重要了)。
代码如下:
HTML:
<div class="chart" data-percent="73">73%</div>
JS:
$(function() {
$('.chart').easyPieChart({
animate: 2000,
scaleColor: false,
lineWidth: 12,
lineCap: 'square',
size: 100,
trackColor: '#e5e5e5',
barColor: '#3da0ea'
});
});
帮助表示赞赏!
【问题讨论】:
标签: jquery jquery-plugins progress-bar