我在我的应用程序中使用了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,
};
答案 0 :(得分:0)
删除[选项]后,它有效。
<p-chart type="pie" width="550px" height="550px" [data]="piedata"></p-chart>