@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
12 lines • 412 B
JavaScript
export const createIsHighlighted = (highlightScope, highlightedItem) => input => {
if (!highlightScope) {
return false;
}
if (highlightScope.highlight === 'series') {
return input.seriesId === highlightedItem?.seriesId;
}
if (highlightScope.highlight === 'item') {
return input.dataIndex === highlightedItem?.dataIndex && input.seriesId === highlightedItem?.seriesId;
}
return false;
};