UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

28 lines (27 loc) 1.02 kB
/** * DevExtreme (viz/funnel/tiling.funnel.js) * Version: 18.1.3 * Build date: Tue May 15 2018 * * Copyright (c) 2012 - 2018 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; var CENTER = .5; module.exports = { 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 }) } };