File size: 539 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { MaybeStackedGraphicalItem } from '../../state/selectors/barSelectors';
import { StackSeriesIdentifier } from './stackTypes';
/**
* Returns identifier for stack series which is one individual graphical item in the stack.
* @param graphicalItem - The graphical item representing the series in the stack.
* @return The identifier for the series in the stack
*/
export function getStackSeriesIdentifier(
graphicalItem: MaybeStackedGraphicalItem | undefined,
): StackSeriesIdentifier | undefined {
return graphicalItem?.id;
}
|