Angularjs ui-jq plot 数据不加载问题解决

前端之家收集整理的这篇文章主要介绍了Angularjs ui-jq plot 数据不加载问题解决前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

解决方法

此问题是由于plot懒加载引起的,添加ui-refresh属性属性值为画图所需的数据,问题即可解决。如:

<div id="test" ui-jq="plot" ui-refresh="line" ui-options="[{ data: {{line}},... },... ]"></div>

详细问题描述:

http://stackoverflow.com/questions/29929618/ui-jq-flot-chart-on-lazy-load

原文链接:https://www.f2er.com/angularjs/148457.html

猜你在找的Angularjs相关文章