我有一个带有某些选项的Mat-select,并且正在根据映射到特定选项的value
的数据来绘制Google折线图。
当我更改选择时,可以看到value
通过selectionChange($event)
函数进行了更改,并且我想要的数据也正确,但是,图表div没有得到更新/重新呈现。
我如何使其随着选项更改而更新。
这是我的一些代码:
<mat-form-field class="cDropdown">
<mat-select [(ngModel)]="ids[a.name]" panelClass="selectplantdropdown" (selectionChange)="onChangeEvent($event)">
<mat-option [value]=a.id>{{ a.name }}</mat-option>
<ng-container *ngFor="let b of temp">
<mat-option [value]=b.id (click)="switchCustomer()">
{{ b.name }}
</mat-option>
</ng-container>
</mat-select>
</mat-form-field>
这是折线图的div
<div style="font-weight: bolder; padding: 10% 40%">{{ chartData[ids[a.name]][0].data[1] }} {{ ids[a.name] }} CHART GOES HERE
</div> /*I can see the values changing here as well*/
<div>
<app-linechart [data]="chartData[ids[a.name]][0].data" [config]="config" [elementId]="ids[a.name]"></app-linechart>
</div>
编辑: 这是.ts文件中的onChangeEvent($ event)函数
onChangeEvent(event) {
console.log(event.value);
console.log(JSON.stringify(this.chartData[event.value][0].data));
}