function row_getParentRows<TFeatures, TData>(row): Row<TFeatures, TData>[];function row_getParentRows<TFeatures, TData>(row): Row<TFeatures, TData>[];Defined in: core/rows/coreRowsFeature.utils.ts:140
Collects this row's ancestor chain from root to direct parent.
The current row is not included. Rows without a parent return an empty array.
TFeatures extends TableFeatures
TData extends RowData
Row<TFeatures, TData>
Row<TFeatures, TData>[]
const ancestors = row_getParentRows(row)const ancestors = row_getParentRows(row)