我试图使用jquery circliful插件从json数据创建一组循环统计信息,但是它没有按预期工作,想要显示" 值"来自json的密钥并将该数据值嵌入到循环统计图中。
{
"employee":[
{
"name": "test123",
"value": "20"
},
{
"name": "test456",
"value": "30"
},
{
"name": "test789",
"value": "40"
}
]
}
HTML片段:
<section class="container">
<div class="row">
<div class="col-lg-3">
<div id="circle"></div>
</div>
</div>
</section>
JavaScript的:
$("#circle").circliful({
animationStep: 5,
foregroundBorderWidth: 15,
backgroundBorderWidth: 15,
percent: 80 // mapping values for circular statistics graph
});
对此有何帮助?提前谢谢。