我有一个以下格式的数组。
timeSeries = [{ key: 'Time Series Data',
values: [ { 'label': '01/01', 'value': 20 } ] }];
现在我有一个typescript对象,它具有我需要映射到标签值和值的属性。
export interface Plot {
dateLabel: string;
x: number;
}
我的plotArray如下
plotArray = [ { 'label': '01/03', 'value': 30 }, { 'label': '01/04', 'value': 40 }];
有什么不同的方法可以将我的plotArray添加到javascript中timeSeries中的值?