UNPKG

@mui/x-charts

Version:

The community edition of the Charts components (MUI X).

5 lines 200 B
// Returns the index of a defined shape export function getSymbol(shape) { const symbolNames = 'circle cross diamond square star triangle wye'.split(/ /); return symbolNames.indexOf(shape) || 0; }