UNPKG

@mui/x-charts

Version:

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

11 lines (10 loc) 304 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSymbol = getSymbol; // Returns the index of a defined shape function getSymbol(shape) { const symbolNames = 'circle cross diamond square star triangle wye'.split(/ /); return symbolNames.indexOf(shape) || 0; }