plotly.js
Version:
The open source javascript graphing library that powers plotly
15 lines (11 loc) • 411 B
JavaScript
module.exports = function supplyDrawNewSelectionDefaults(layoutIn, layoutOut, coerce) {
coerce('newselection.mode');
var newselectionLineWidth = coerce('newselection.line.width');
if(newselectionLineWidth) {
coerce('newselection.line.color');
coerce('newselection.line.dash');
}
coerce('activeselection.fillcolor');
coerce('activeselection.opacity');
};
;