import { Grid, GridItem } from '../../components/Grid' import { Column } from '../../components/charts/Column' export const ArchiveColumn = ({ lineGroup, data, interval, style, headerHeight, yStart }) => { const dataLast = data?.[data.length - 1] const pv = lineGroup.filter(line => line.showLabels).map(line => ({ color: line.color, label: line.label, unit: line.units, value: dataLast?.[line.xAccessorName] })) return (