我写了这段代码,但它不能正常工作
function tooltipHtml(n, d) {
return "<b>" + n + "</b><table>" +
"<hr style='margin-top: 5px;margin-bottom: 5px;'/>" +
"<tr ng-repeat=\"Tooltip in d.Tooltip\">" +
"<td style='min-width:200px;'><div data-ng-bind=\"Tooltip.Name\"></div> = <div data-ng-bind=\"Tooltip.Value\"></div></td>" +
"</tr>" +
"</table>";
}
其中
d.Tooltip =
[{
Name: "MGRert APropertsdfy Management",
Value: 162
},
{
Name: "MGRss SManagement",
Value: 1621
},
{
Name: "Novssa CASFS",
Value: 1612
}
]
这可以在js文件中创建html。