UNPKG

@progress/kendo-charts

Version:

Kendo UI platform-independent Charts library

10 lines 360 B
export default function unclipBox(box, elements) { elements.forEach(element => { const options = element && element.options; const elBox = element && (element.box || element.wrapperBox); if (options && elBox && options.noclip !== false && options.visible !== false) { box.wrap(elBox); } }); return box; }