* ng不显示所有融合图表图表

时间:2018-02-12 11:50:33

标签: angular

我在* ngFor中有融合图表,所有数据都很好,但有时也没有显示所有图表,也使用ngx-pagination。还使用* ngIf,以便仅在加载数据时呈现。它不会每次都发生。有时它的表现。

<tbody>
    <tr *ngFor="let item of apiValues | paginate: { itemsPerPage: 5, currentPage: p }; trackBy:identify ">
        <td> {{item.AreaName}} </td>
        <td>
            <div [@popOverState]="stateName">
                <fusioncharts width="100%" height="100" type="hlineargauge" dataformat="json" [dataSource]="item.graph1">

                </fusioncharts>
            </div>
        </td>
        <td>
            <div [@popOverState]="stateName">
                <fusioncharts width="100%" height="90" type="hlineargauge" dataformat="json" [dataSource]="item.graph2">
                </fusioncharts>
            </div>
        </td>
    </tr>
</tbody>

0 个答案:

没有答案