```js .shapeConfig({ label: d => d.id, labelBounds: (d, i, s) => { const poly = d3plus.largestRect(s.points); return poly ? { x: poly.cx - poly.width / 2, y: poly.cy - poly.height / 2, width: poly.width, height: poly.height } : null; } }) ```