| 123456789101112131415161718192021 |
- /**
- * DevExtreme (viz/tree_map/tiling.squarified.js)
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
- */
- "use strict";
- var _max = Math.max;
- var _squarify = require("./tiling.squarified.base");
- function accumulate(total, current) {
- return _max(total, current)
- }
- function squarified(data) {
- return _squarify(data, accumulate, false)
- }
- require("./tiling").addAlgorithm("squarified", squarified);
- module.exports = squarified;
|