我无法从表中获取值到图表图形,我正在尝试使用输入,但它无法正常工作。我不明白如何从一个组件到另一个组件获得价值。 我尝试这样做,我在我的子组件中使用@input与图表:
@Input()
set newInput(newInput:number) {
if(<0)
this._newInput=0;
else if(newInput>100)
this._newInput=100;
else
this._newInput= newInput;
}
get newInput() { return this._newInput; }
}
在父组件中我使用:
<charts-component [newInput]="newInput"></charts-component>
我在plnker中放了2个组件.ts和.html文件: https://plnkr.co/edit/hPHo9FhqxaLbjWiDQp2w?p=preview