devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
24 lines (21 loc) • 621 B
JavaScript
/**
* DevExtreme (esm/viz/tree_map/tiling.squarified.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
var _max = Math.max;
import _squarify from "./tiling.squarified.base";
import {
addAlgorithm
} from "./tiling";
function accumulate(total, current) {
return _max(total, current)
}
function squarified(data) {
return _squarify(data, accumulate, false)
}
addAlgorithm("squarified", squarified);
export default squarified;