UNPKG

plotly.js

Version:

The open source javascript graphing library that powers plotly

35 lines (28 loc) 768 B
/** * Copyright 2012-2020, Plotly, Inc. * All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; /* * Given a trace, look up the carpet axis by carpet. */ module.exports = function(gd, trace) { var n = gd._fullData.length; var firstAxis; for(var i = 0; i < n; i++) { var maybeCarpet = gd._fullData[i]; if(maybeCarpet.index === trace.index) continue; if(maybeCarpet.type === 'carpet') { if(!firstAxis) { firstAxis = maybeCarpet; } if(maybeCarpet.carpet === trace.carpet) { return maybeCarpet; } } } return firstAxis; };