我正在使用Swimlane的Ngx图表构建一个应用程序来进行图形数据表示,但是当我通过刷新按钮更新数据时,我会遇到奇怪的行为,该按钮会重新调用GET函数来更新数据数组.我正在使用@ angular / flex-layout作为“类似瓦片”的视图,但即使不使用它,我仍然遇到这个问题 – 它只是增长了父容器.我不想在[view]属性中使用硬编码的px值,因为我希望它可以使用任何大小的graph / tile.
我使用了一个非常基本的垂直条形图:
<div> <div> <ngx-charts-bar-vertical [results]="dataArray" [legend]="true" [xAxis]="true" [yAxis]="true" [xAxisLabel]="'Date'" [yAxisLabel]="'# tickets Raised'" [showXAxisLabel]="true" [showYAxisLabel]="true"></ngx-charts-bar-vertical> </div> <div> <!-- Got a table here --> </div> </div>
要更新我正在做的dataArray:
export class DashboardComponent implements AfterViewInit { constructor(private httpClient: HttpClient,private datePipe: DatePipe,private dataService: DataService) { } dataArray: any[] = []; getData(): void { this.dataService.getSomeData<any[]>().subscribe(d => { this.dataArray = d; }); } // Init ngAfterViewInit(): void { this.getData(); } }
在初始加载时,它很好并将填充容器(它可以在哪里)但是当我点击刷新按钮时,这是我得到的行为:
感谢您的时间.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。