UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

27 lines (26 loc) 1.01 kB
/** * DevExtreme (esm/viz/funnel/tiling.funnel.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 CENTER = .5; export default { getFigures: function(data) { var height = 1 / data.length; return data.map((function(value, index, array) { var nextValue = array[index + 1] ? array[index + 1] : array[index]; return [CENTER - value / 2, height * index, CENTER + value / 2, height * index, CENTER + nextValue / 2, height * (index + 1), CENTER - nextValue / 2, height * (index + 1)] })) }, normalizeValues: function(items) { var max = items.reduce((function(max, item) { return Math.max(item.value, max) }), items[0] && items[0].value || 0); return items.map((function(item) { return item.value / max })) } };