devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
23 lines (20 loc) • 599 B
JavaScript
/**
* DevExtreme (esm/viz/tree_map/tiling.strip.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import _squarify from "./tiling.squarified.base";
import {
addAlgorithm
} from "./tiling";
function accumulate(total, current, count) {
return ((count - 1) * total + current) / count
}
function strip(data) {
return _squarify(data, accumulate, true)
}
addAlgorithm("strip", strip);
export default strip;