(entries)
| 104431 | } |
| 104432 | |
| 104433 | function legendEntryLayout(entries) { |
| 104434 | // get max widths for each column |
| 104435 | var widths = entries.reduce(function (w, g) { |
| 104436 | w[g.column] = Math.max(g.bounds.x2 - g.x, w[g.column] || 0); |
| 104437 | return w; |
| 104438 | }, {}); // set dimensions of legend entry groups |
| 104439 | |
| 104440 | entries.forEach(function (g) { |
| 104441 | g.width = widths[g.column]; |
| 104442 | g.height = g.bounds.y2 - g.y; |
| 104443 | }); |
| 104444 | } |
| 104445 | },{"../constants":"OeAt","vega-scenegraph":"AgKg"}],"Mnvo":[function(require,module,exports) { |
| 104446 | "use strict"; |
| 104447 |
no test coverage detected