-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathdefaults.js
67 lines (54 loc) · 1.93 KB
/
defaults.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* Copyright 2012-2016, 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';
var Lib = require('../../lib');
var Color = require('../../components/color');
var attributes = require('./attributes');
module.exports = function supplyDefaults(traceIn, traceOut, defaultColor) {
function coerce(attr, dflt) {
return Lib.coerce(traceIn, traceOut, attributes, attr, dflt);
}
var y = coerce('y'),
x = coerce('x'),
defaultOrientation;
if (y && y.length) {
defaultOrientation = 'v';
if (!x) coerce('x0');
} else if (x && x.length) {
defaultOrientation = 'h';
coerce('y0');
} else {
traceOut.visible = false;
return;
}
coerce('orientation', defaultOrientation);
coerce('line.color', (traceIn.marker||{}).color || defaultColor);
coerce('line.width', 2);
coerce('fillcolor', Color.addOpacity(traceOut.line.color, 0.5));
coerce('whiskerwidth');
coerce('boxmean');
var outlierColorDflt = Lib.coerce2(traceIn, traceOut, attributes, 'marker.outliercolor'),
lineoutliercolor = coerce('marker.line.outliercolor'),
boxpoints = outlierColorDflt ||
lineoutliercolor ? coerce('boxpoints', 'suspectedoutliers') :
coerce('boxpoints');
if(boxpoints) {
coerce('jitter', boxpoints==='all' ? 0.3 : 0);
coerce('pointpos', boxpoints==='all' ? -1.5 : 0);
coerce('marker.symbol');
coerce('marker.opacity');
coerce('marker.size');
coerce('marker.color', traceOut.line.color);
coerce('marker.line.color');
coerce('marker.line.width');
if(boxpoints==='suspectedoutliers') {
coerce('marker.line.outliercolor', traceOut.marker.color);
coerce('marker.line.outlierwidth');
}
}
};