UNPKG

plotly.js

Version:

The open source javascript graphing library that powers plotly

11 lines (8 loc) 308 B
'use strict'; var scatterFormatLabels = require('../scatter/format_labels'); module.exports = function formatLabels(cdi, trace, fullLayout) { var i = cdi.i; if(!('x' in cdi)) cdi.x = trace._x[i]; if(!('y' in cdi)) cdi.y = trace._y[i]; return scatterFormatLabels(cdi, trace, fullLayout); };