我试图在角度网格中显示angularjs c3图表。我正在使用来自https://github.com/wasilak/angular-c3-simple的c3图表指令。即使gricter出现在gridster中的图表也不见了。请找到gridster+C3-simple
以下我的网格代码中包含c3简单图表指令:
<div gridster="gridsterOptions" ng-if="dashboard.widgets">
<ul class="with-3d-shadow with-transitions">
<li gridster-item="widget" ng-repeat="widget in dashboard.widgets">
<div class="box">
<div class="box-header">
<h3>{{ widget.name }}</h3>
</div>
<div class="box-content" ng-if="widget.options">
<c3-simple id= "widget.id" config="widget.options"></c3-simple>
</div>
</div>
</li>
</ul>
</div>
答案 0 :(得分:0)
更改指令以使图表显示在gridster中