我在列使用中添加了迷你图,但它只有一行,如何将所有行放在列使用中?
我还提出了一些与使用栏相关的代码
columns: [{
{
field: "Usage",
title: "Usage",
template: '<span id="sparkline"style="line-height: 60px ; padding: 0 5px 0spx ; text-align: center" ></span>'
}, {
command: ["edit"],
title: " "
}],
editable: "popup",
});
谢谢
答案 0 :(得分:5)
问题是您在模板中使用id
:id
必须是唯一的。
按id
class
template: '<span class="sparkline"style="line-height: 60px ; padding: 0 5px 0spx ; text-align: center" ></span>'
然后在初始化中使用:
$(".sparkline").kendoSparkline({...});
而不是:
$("#sparkline").kendoSparkline({});