无法更改primeng饼图,条形图和折线图的宽度和高度?

时间:2018-01-24 20:08:16

标签: charts primeng

我在我的应用程序中使用了primeng饼图,折线图,条形图。在将primeng版本更新为“primeng”之前,我能够更改宽度和高度:“^ 5.2.0-rc.1”。

在早期版本中工作正常。更新版本后,这些图表的宽度和高度不起作用。你能帮我解决这个问题吗?

html:
 <p-chart type="pie"  [data]="piedata" [width]="600" [height]="600" [options]="pieOptions"></p-chart>

component.ts
this.piedata = {
                labels: this.chartGroupList,
                datasets: [{
                                data: this.itemCountList,
                                backgroundColor:this.itemColorList,
                                hoverBackgroundColor:this.itemColorList
                            }]
                };

   pieOptions = {
        responsive: false,
        maintainAspectRatio: false,
    };

enter image description here

1 个答案:

答案 0 :(得分:0)

删除[选项]后,它有效。

<p-chart type="pie" width="550px" height="550px" [data]="piedata"></p-chart>