我这里有个突如其来的飞车-https://stackblitz.com/edit/ng-first-v-last-arrows-t1tt8e?embed=1&file=src/app/bar-chart.ts&hideNavigation=1
我有两个单独的条,它们以不同的开始和结束值创建。
当前y.domain是使用硬编码数字创建的
this.y.domain([93, 106])
数据看起来像这样。
{
phase: 'One',
start: 102,
finish: 100
},
{
phase: 'One',
start: 98,
finish: 101
}
我需要起始值中的最低值和结束值中的最高值。
如何在y.domain数组中获取这些值