package.src.traces.funnel.cross_trace_calc.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plotly.js Show documentation
Show all versions of plotly.js Show documentation
The open source javascript graphing library that powers plotly
The newest version!
'use strict';
var setGroupPositions = require('../bar/cross_trace_calc').setGroupPositions;
module.exports = function crossTraceCalc(gd, plotinfo) {
var fullLayout = gd._fullLayout;
var fullData = gd._fullData;
var calcdata = gd.calcdata;
var xa = plotinfo.xaxis;
var ya = plotinfo.yaxis;
var funnels = [];
var funnelsVert = [];
var funnelsHorz = [];
var cd, i;
for(i = 0; i < fullData.length; i++) {
var fullTrace = fullData[i];
var isHorizontal = (fullTrace.orientation === 'h');
if(
fullTrace.visible === true &&
fullTrace.xaxis === xa._id &&
fullTrace.yaxis === ya._id &&
fullTrace.type === 'funnel'
) {
cd = calcdata[i];
if(isHorizontal) {
funnelsHorz.push(cd);
} else {
funnelsVert.push(cd);
}
funnels.push(cd);
}
}
var opts = {
mode: fullLayout.funnelmode,
norm: fullLayout.funnelnorm,
gap: fullLayout.funnelgap,
groupgap: fullLayout.funnelgroupgap
};
setGroupPositions(gd, xa, ya, funnelsVert, opts);
setGroupPositions(gd, ya, xa, funnelsHorz, opts);
for(i = 0; i < funnels.length; i++) {
cd = funnels[i];
for(var j = 0; j < cd.length; j++) {
if(j + 1 < cd.length) {
cd[j].nextP0 = cd[j + 1].p0;
cd[j].nextS0 = cd[j + 1].s0;
cd[j].nextP1 = cd[j + 1].p1;
cd[j].nextS1 = cd[j + 1].s1;
}
}
}
};