UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

9 lines (8 loc) 209 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAreaPath = getAreaPath; function getAreaPath(points) { return `M ${points.map(p => `${p.x} ${p.y}`).join('L')} Z`; }