| 1234567891011121314151617181920 |
- /**
- * DevExtreme (viz/tree_map/tiling.strip.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 _squarify = require("./tiling.squarified.base");
- function accumulate(total, current, count) {
- return ((count - 1) * total + current) / count
- }
- function strip(data) {
- return _squarify(data, accumulate, true)
- }
- require("./tiling").addAlgorithm("strip", strip);
- module.exports = strip;
|