source: node_modules/recharts/es6/util/stacks/getStackSeriesIdentifier.js

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 385 bytes
Line 
1/**
2 * Returns identifier for stack series which is one individual graphical item in the stack.
3 * @param graphicalItem - The graphical item representing the series in the stack.
4 * @return The identifier for the series in the stack
5 */
6export function getStackSeriesIdentifier(graphicalItem) {
7 return graphicalItem === null || graphicalItem === void 0 ? void 0 : graphicalItem.id;
8}
Note: See TracBrowser for help on using the repository browser.