plotly.js 1.58.0 → 1.58.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -1
- package/dist/README.md +25 -25
- package/dist/plot-schema.json +15 -15
- package/dist/plotly-basic.js +608 -444
- package/dist/plotly-basic.min.js +4 -4
- package/dist/plotly-cartesian.js +725 -561
- package/dist/plotly-cartesian.min.js +4 -4
- package/dist/plotly-finance.js +689 -525
- package/dist/plotly-finance.min.js +4 -4
- package/dist/plotly-geo-assets.js +2 -2
- package/dist/plotly-geo.js +612 -448
- package/dist/plotly-geo.min.js +4 -4
- package/dist/plotly-gl2d.js +790 -626
- package/dist/plotly-gl2d.min.js +10 -10
- package/dist/plotly-gl3d.js +514 -389
- package/dist/plotly-gl3d.min.js +3 -3
- package/dist/plotly-mapbox.js +622 -458
- package/dist/plotly-mapbox.min.js +4 -4
- package/dist/plotly-with-meta.js +988 -856
- package/dist/plotly.js +980 -851
- package/dist/plotly.min.js +3 -3
- package/dist/translation-keys.txt +1 -1
- package/package.json +1 -1
- package/src/components/colorscale/index.js +1 -1
- package/src/components/errorbars/attributes.js +1 -1
- package/src/components/fx/hover.js +1 -1
- package/src/components/sliders/draw.js +1 -1
- package/src/lib/index.js +2 -1
- package/src/lib/preserve_drawing_buffer.js +68 -0
- package/src/plot_api/plot_api.js +19 -15
- package/src/plots/cartesian/autorange.js +33 -64
- package/src/plots/cartesian/axes.js +44 -16
- package/src/plots/cartesian/axis_ids.js +16 -0
- package/src/plots/cartesian/constraints.js +2 -2
- package/src/plots/cartesian/layout_attributes.js +4 -1
- package/src/plots/gl3d/scene.js +16 -18
- package/src/plots/plots.js +61 -22
- package/src/plots/polar/polar.js +2 -0
- package/src/traces/carpet/attributes.js +2 -2
- package/src/traces/carpet/create_i_derivative_evaluator.js +1 -1
- package/src/traces/carpet/plot.js +1 -1
- package/src/traces/carpet/set_convert.js +2 -2
- package/src/traces/carpet/smooth_fill_2d_array.js +1 -1
- package/src/traces/parcats/attributes.js +1 -1
- package/src/traces/scatter/plot.js +1 -1
- package/src/traces/scattercarpet/plot.js +1 -1
- package/src/traces/sunburst/calc.js +3 -1
- package/src/version.js +1 -1
package/dist/plotly-cartesian.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* plotly.js (cartesian) v1.58.
|
|
2
|
+
* plotly.js (cartesian) v1.58.4
|
|
3
3
|
* Copyright 2012-2020, Plotly, Inc.
|
|
4
4
|
* All rights reserved.
|
|
5
5
|
* Licensed under the MIT license
|
|
@@ -72,7 +72,7 @@ for(var selector in rules) {
|
|
|
72
72
|
Lib.addStyleRule(fullSelector, rules[selector]);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
},{"../src/lib":
|
|
75
|
+
},{"../src/lib":233}],2:[function(_dereq_,module,exports){
|
|
76
76
|
/**
|
|
77
77
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78
78
|
* All rights reserved.
|
|
@@ -85,7 +85,7 @@ for(var selector in rules) {
|
|
|
85
85
|
|
|
86
86
|
module.exports = _dereq_('../src/traces/bar');
|
|
87
87
|
|
|
88
|
-
},{"../src/traces/bar":
|
|
88
|
+
},{"../src/traces/bar":344}],3:[function(_dereq_,module,exports){
|
|
89
89
|
/**
|
|
90
90
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91
91
|
* All rights reserved.
|
|
@@ -98,7 +98,7 @@ module.exports = _dereq_('../src/traces/bar');
|
|
|
98
98
|
|
|
99
99
|
module.exports = _dereq_('../src/traces/box');
|
|
100
100
|
|
|
101
|
-
},{"../src/traces/box":
|
|
101
|
+
},{"../src/traces/box":359}],4:[function(_dereq_,module,exports){
|
|
102
102
|
/**
|
|
103
103
|
* Copyright 2012-2020, Plotly, Inc.
|
|
104
104
|
* All rights reserved.
|
|
@@ -111,7 +111,7 @@ module.exports = _dereq_('../src/traces/box');
|
|
|
111
111
|
|
|
112
112
|
module.exports = _dereq_('../src/traces/contour');
|
|
113
113
|
|
|
114
|
-
},{"../src/traces/contour":
|
|
114
|
+
},{"../src/traces/contour":379}],5:[function(_dereq_,module,exports){
|
|
115
115
|
/**
|
|
116
116
|
* Copyright 2012-2020, Plotly, Inc.
|
|
117
117
|
* All rights reserved.
|
|
@@ -124,7 +124,7 @@ module.exports = _dereq_('../src/traces/contour');
|
|
|
124
124
|
|
|
125
125
|
module.exports = _dereq_('../src/core');
|
|
126
126
|
|
|
127
|
-
},{"../src/core":
|
|
127
|
+
},{"../src/core":214}],6:[function(_dereq_,module,exports){
|
|
128
128
|
/**
|
|
129
129
|
* Copyright 2012-2020, Plotly, Inc.
|
|
130
130
|
* All rights reserved.
|
|
@@ -137,7 +137,7 @@ module.exports = _dereq_('../src/core');
|
|
|
137
137
|
|
|
138
138
|
module.exports = _dereq_('../src/traces/heatmap');
|
|
139
139
|
|
|
140
|
-
},{"../src/traces/heatmap":
|
|
140
|
+
},{"../src/traces/heatmap":395}],7:[function(_dereq_,module,exports){
|
|
141
141
|
/**
|
|
142
142
|
* Copyright 2012-2020, Plotly, Inc.
|
|
143
143
|
* All rights reserved.
|
|
@@ -150,7 +150,7 @@ module.exports = _dereq_('../src/traces/heatmap');
|
|
|
150
150
|
|
|
151
151
|
module.exports = _dereq_('../src/traces/histogram');
|
|
152
152
|
|
|
153
|
-
},{"../src/traces/histogram":
|
|
153
|
+
},{"../src/traces/histogram":413}],8:[function(_dereq_,module,exports){
|
|
154
154
|
/**
|
|
155
155
|
* Copyright 2012-2020, Plotly, Inc.
|
|
156
156
|
* All rights reserved.
|
|
@@ -163,7 +163,7 @@ module.exports = _dereq_('../src/traces/histogram');
|
|
|
163
163
|
|
|
164
164
|
module.exports = _dereq_('../src/traces/histogram2d');
|
|
165
165
|
|
|
166
|
-
},{"../src/traces/histogram2d":
|
|
166
|
+
},{"../src/traces/histogram2d":419}],9:[function(_dereq_,module,exports){
|
|
167
167
|
/**
|
|
168
168
|
* Copyright 2012-2020, Plotly, Inc.
|
|
169
169
|
* All rights reserved.
|
|
@@ -176,7 +176,7 @@ module.exports = _dereq_('../src/traces/histogram2d');
|
|
|
176
176
|
|
|
177
177
|
module.exports = _dereq_('../src/traces/histogram2dcontour');
|
|
178
178
|
|
|
179
|
-
},{"../src/traces/histogram2dcontour":
|
|
179
|
+
},{"../src/traces/histogram2dcontour":423}],10:[function(_dereq_,module,exports){
|
|
180
180
|
/**
|
|
181
181
|
* Copyright 2012-2020, Plotly, Inc.
|
|
182
182
|
* All rights reserved.
|
|
@@ -189,7 +189,7 @@ module.exports = _dereq_('../src/traces/histogram2dcontour');
|
|
|
189
189
|
|
|
190
190
|
module.exports = _dereq_('../src/traces/image');
|
|
191
191
|
|
|
192
|
-
},{"../src/traces/image":
|
|
192
|
+
},{"../src/traces/image":431}],11:[function(_dereq_,module,exports){
|
|
193
193
|
/**
|
|
194
194
|
* Copyright 2012-2020, Plotly, Inc.
|
|
195
195
|
* All rights reserved.
|
|
@@ -231,7 +231,7 @@ module.exports = Plotly;
|
|
|
231
231
|
|
|
232
232
|
module.exports = _dereq_('../src/traces/pie');
|
|
233
233
|
|
|
234
|
-
},{"../src/traces/pie":
|
|
234
|
+
},{"../src/traces/pie":440}],13:[function(_dereq_,module,exports){
|
|
235
235
|
/**
|
|
236
236
|
* Copyright 2012-2020, Plotly, Inc.
|
|
237
237
|
* All rights reserved.
|
|
@@ -244,7 +244,7 @@ module.exports = _dereq_('../src/traces/pie');
|
|
|
244
244
|
|
|
245
245
|
module.exports = _dereq_('../src/traces/scatterternary');
|
|
246
246
|
|
|
247
|
-
},{"../src/traces/scatterternary":
|
|
247
|
+
},{"../src/traces/scatterternary":481}],14:[function(_dereq_,module,exports){
|
|
248
248
|
/**
|
|
249
249
|
* Copyright 2012-2020, Plotly, Inc.
|
|
250
250
|
* All rights reserved.
|
|
@@ -257,7 +257,7 @@ module.exports = _dereq_('../src/traces/scatterternary');
|
|
|
257
257
|
|
|
258
258
|
module.exports = _dereq_('../src/traces/violin');
|
|
259
259
|
|
|
260
|
-
},{"../src/traces/violin":
|
|
260
|
+
},{"../src/traces/violin":489}],15:[function(_dereq_,module,exports){
|
|
261
261
|
'use strict'
|
|
262
262
|
|
|
263
263
|
exports.byteLength = byteLength
|
|
@@ -14489,7 +14489,7 @@ return Promise$1;
|
|
|
14489
14489
|
|
|
14490
14490
|
|
|
14491
14491
|
}).call(this)}).call(this,_dereq_('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
14492
|
-
},{"_process":
|
|
14492
|
+
},{"_process":87}],23:[function(_dereq_,module,exports){
|
|
14493
14493
|
/**
|
|
14494
14494
|
* inspired by is-number <https://github.com/jonschlinkert/is-number>
|
|
14495
14495
|
* but significantly simplified and sped up by ignoring number and string constructors
|
|
@@ -14515,7 +14515,7 @@ module.exports = function(n) {
|
|
|
14515
14515
|
return n - n < 1;
|
|
14516
14516
|
};
|
|
14517
14517
|
|
|
14518
|
-
},{"is-string-blank":
|
|
14518
|
+
},{"is-string-blank":75}],24:[function(_dereq_,module,exports){
|
|
14519
14519
|
module.exports = adjoint;
|
|
14520
14520
|
|
|
14521
14521
|
/**
|
|
@@ -16013,7 +16013,7 @@ module.exports = function (input, callback) {
|
|
|
16013
16013
|
module.exports.types = Object.keys(typeHandlers);
|
|
16014
16014
|
|
|
16015
16015
|
}).call(this)}).call(this,_dereq_("buffer").Buffer)
|
|
16016
|
-
},{"./detector":57,"./types":60,"buffer":18,"fs":16,"path":
|
|
16016
|
+
},{"./detector":57,"./types":60,"buffer":18,"fs":16,"path":78}],59:[function(_dereq_,module,exports){
|
|
16017
16017
|
'use strict';
|
|
16018
16018
|
|
|
16019
16019
|
// Abstract reading multi-byte unsigned integers
|
|
@@ -16849,6 +16849,43 @@ module.exports = {
|
|
|
16849
16849
|
},{}],73:[function(_dereq_,module,exports){
|
|
16850
16850
|
module.exports = true;
|
|
16851
16851
|
},{}],74:[function(_dereq_,module,exports){
|
|
16852
|
+
'use strict'
|
|
16853
|
+
|
|
16854
|
+
module.exports = isMobile
|
|
16855
|
+
module.exports.isMobile = isMobile
|
|
16856
|
+
module.exports.default = isMobile
|
|
16857
|
+
|
|
16858
|
+
var mobileRE = /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series[46]0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i
|
|
16859
|
+
|
|
16860
|
+
var tabletRE = /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series[46]0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino|android|ipad|playbook|silk/i
|
|
16861
|
+
|
|
16862
|
+
function isMobile (opts) {
|
|
16863
|
+
if (!opts) opts = {}
|
|
16864
|
+
var ua = opts.ua
|
|
16865
|
+
if (!ua && typeof navigator !== 'undefined') ua = navigator.userAgent
|
|
16866
|
+
if (ua && ua.headers && typeof ua.headers['user-agent'] === 'string') {
|
|
16867
|
+
ua = ua.headers['user-agent']
|
|
16868
|
+
}
|
|
16869
|
+
if (typeof ua !== 'string') return false
|
|
16870
|
+
|
|
16871
|
+
var result = opts.tablet ? tabletRE.test(ua) : mobileRE.test(ua)
|
|
16872
|
+
|
|
16873
|
+
if (
|
|
16874
|
+
!result &&
|
|
16875
|
+
opts.tablet &&
|
|
16876
|
+
opts.featureDetect &&
|
|
16877
|
+
navigator &&
|
|
16878
|
+
navigator.maxTouchPoints > 1 &&
|
|
16879
|
+
ua.indexOf('Macintosh') !== -1 &&
|
|
16880
|
+
ua.indexOf('Safari') !== -1
|
|
16881
|
+
) {
|
|
16882
|
+
result = true
|
|
16883
|
+
}
|
|
16884
|
+
|
|
16885
|
+
return result
|
|
16886
|
+
}
|
|
16887
|
+
|
|
16888
|
+
},{}],75:[function(_dereq_,module,exports){
|
|
16852
16889
|
'use strict';
|
|
16853
16890
|
|
|
16854
16891
|
/**
|
|
@@ -16885,7 +16922,7 @@ module.exports = function(str){
|
|
|
16885
16922
|
return true;
|
|
16886
16923
|
}
|
|
16887
16924
|
|
|
16888
|
-
},{}],
|
|
16925
|
+
},{}],76:[function(_dereq_,module,exports){
|
|
16889
16926
|
var rootPosition = { left: 0, top: 0 }
|
|
16890
16927
|
|
|
16891
16928
|
module.exports = mouseEventOffset
|
|
@@ -16912,7 +16949,7 @@ function getBoundingClientOffset (element) {
|
|
|
16912
16949
|
}
|
|
16913
16950
|
}
|
|
16914
16951
|
|
|
16915
|
-
},{}],
|
|
16952
|
+
},{}],77:[function(_dereq_,module,exports){
|
|
16916
16953
|
|
|
16917
16954
|
module.exports = parse
|
|
16918
16955
|
|
|
@@ -16971,7 +17008,7 @@ function parseValues(args) {
|
|
|
16971
17008
|
return numbers ? numbers.map(Number) : []
|
|
16972
17009
|
}
|
|
16973
17010
|
|
|
16974
|
-
},{}],
|
|
17011
|
+
},{}],78:[function(_dereq_,module,exports){
|
|
16975
17012
|
(function (process){(function (){
|
|
16976
17013
|
// 'path' module extracted from Node.js v8.11.1 (only the posix part)
|
|
16977
17014
|
// transplited with Babel
|
|
@@ -17504,7 +17541,7 @@ posix.posix = posix;
|
|
|
17504
17541
|
module.exports = posix;
|
|
17505
17542
|
|
|
17506
17543
|
}).call(this)}).call(this,_dereq_('_process'))
|
|
17507
|
-
},{"_process":
|
|
17544
|
+
},{"_process":87}],79:[function(_dereq_,module,exports){
|
|
17508
17545
|
/*
|
|
17509
17546
|
* @copyright 2016 Sean Connelly (@voidqk), http://syntheti.cc
|
|
17510
17547
|
* @license MIT
|
|
@@ -17632,7 +17669,7 @@ if (typeof window === 'object')
|
|
|
17632
17669
|
|
|
17633
17670
|
module.exports = PolyBool;
|
|
17634
17671
|
|
|
17635
|
-
},{"./lib/build-log":
|
|
17672
|
+
},{"./lib/build-log":80,"./lib/epsilon":81,"./lib/geojson":82,"./lib/intersecter":83,"./lib/segment-chainer":85,"./lib/segment-selector":86}],80:[function(_dereq_,module,exports){
|
|
17636
17673
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
17637
17674
|
// MIT License
|
|
17638
17675
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -17747,7 +17784,7 @@ function BuildLog(){
|
|
|
17747
17784
|
|
|
17748
17785
|
module.exports = BuildLog;
|
|
17749
17786
|
|
|
17750
|
-
},{}],
|
|
17787
|
+
},{}],81:[function(_dereq_,module,exports){
|
|
17751
17788
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
17752
17789
|
// MIT License
|
|
17753
17790
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -17919,7 +17956,7 @@ function Epsilon(eps){
|
|
|
17919
17956
|
|
|
17920
17957
|
module.exports = Epsilon;
|
|
17921
17958
|
|
|
17922
|
-
},{}],
|
|
17959
|
+
},{}],82:[function(_dereq_,module,exports){
|
|
17923
17960
|
// (c) Copyright 2017, Sean Connelly (@voidqk), http://syntheti.cc
|
|
17924
17961
|
// MIT License
|
|
17925
17962
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -18109,7 +18146,7 @@ var GeoJSON = {
|
|
|
18109
18146
|
|
|
18110
18147
|
module.exports = GeoJSON;
|
|
18111
18148
|
|
|
18112
|
-
},{}],
|
|
18149
|
+
},{}],83:[function(_dereq_,module,exports){
|
|
18113
18150
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
18114
18151
|
// MIT License
|
|
18115
18152
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -18616,7 +18653,7 @@ function Intersecter(selfIntersection, eps, buildLog){
|
|
|
18616
18653
|
|
|
18617
18654
|
module.exports = Intersecter;
|
|
18618
18655
|
|
|
18619
|
-
},{"./linked-list":
|
|
18656
|
+
},{"./linked-list":84}],84:[function(_dereq_,module,exports){
|
|
18620
18657
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
18621
18658
|
// MIT License
|
|
18622
18659
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -18699,7 +18736,7 @@ var LinkedList = {
|
|
|
18699
18736
|
|
|
18700
18737
|
module.exports = LinkedList;
|
|
18701
18738
|
|
|
18702
|
-
},{}],
|
|
18739
|
+
},{}],85:[function(_dereq_,module,exports){
|
|
18703
18740
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
18704
18741
|
// MIT License
|
|
18705
18742
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -18953,7 +18990,7 @@ function SegmentChainer(segments, eps, buildLog){
|
|
|
18953
18990
|
|
|
18954
18991
|
module.exports = SegmentChainer;
|
|
18955
18992
|
|
|
18956
|
-
},{}],
|
|
18993
|
+
},{}],86:[function(_dereq_,module,exports){
|
|
18957
18994
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
18958
18995
|
// MIT License
|
|
18959
18996
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -19121,7 +19158,7 @@ var SegmentSelector = {
|
|
|
19121
19158
|
|
|
19122
19159
|
module.exports = SegmentSelector;
|
|
19123
19160
|
|
|
19124
|
-
},{}],
|
|
19161
|
+
},{}],87:[function(_dereq_,module,exports){
|
|
19125
19162
|
// shim for using process in browser
|
|
19126
19163
|
var process = module.exports = {};
|
|
19127
19164
|
|
|
@@ -19307,7 +19344,7 @@ process.chdir = function (dir) {
|
|
|
19307
19344
|
};
|
|
19308
19345
|
process.umask = function() { return 0; };
|
|
19309
19346
|
|
|
19310
|
-
},{}],
|
|
19347
|
+
},{}],88:[function(_dereq_,module,exports){
|
|
19311
19348
|
// TinyColor v1.4.2
|
|
19312
19349
|
// https://github.com/bgrins/TinyColor
|
|
19313
19350
|
// Brian Grinstead, MIT License
|
|
@@ -20504,7 +20541,7 @@ else {
|
|
|
20504
20541
|
|
|
20505
20542
|
})(Math);
|
|
20506
20543
|
|
|
20507
|
-
},{}],
|
|
20544
|
+
},{}],89:[function(_dereq_,module,exports){
|
|
20508
20545
|
/**
|
|
20509
20546
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20510
20547
|
* All rights reserved.
|
|
@@ -20575,7 +20612,7 @@ module.exports = [
|
|
|
20575
20612
|
}
|
|
20576
20613
|
];
|
|
20577
20614
|
|
|
20578
|
-
},{}],
|
|
20615
|
+
},{}],90:[function(_dereq_,module,exports){
|
|
20579
20616
|
/**
|
|
20580
20617
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20581
20618
|
* All rights reserved.
|
|
@@ -20957,7 +20994,7 @@ module.exports = templatedArray('annotation', {
|
|
|
20957
20994
|
}
|
|
20958
20995
|
});
|
|
20959
20996
|
|
|
20960
|
-
},{"../../constants/axis_placeable_objects":
|
|
20997
|
+
},{"../../constants/axis_placeable_objects":208,"../../plot_api/plot_template":268,"../../plots/cartesian/constants":285,"../../plots/font_attributes":307,"./arrow_paths":89}],91:[function(_dereq_,module,exports){
|
|
20961
20998
|
/**
|
|
20962
20999
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20963
21000
|
* All rights reserved.
|
|
@@ -21048,7 +21085,7 @@ function calcAxisExpansion(ann, ax) {
|
|
|
21048
21085
|
ann._extremes[axId] = extremes;
|
|
21049
21086
|
}
|
|
21050
21087
|
|
|
21051
|
-
},{"../../lib":
|
|
21088
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"./draw":96}],92:[function(_dereq_,module,exports){
|
|
21052
21089
|
/**
|
|
21053
21090
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21054
21091
|
* All rights reserved.
|
|
@@ -21186,7 +21223,7 @@ function clickData2r(d, ax) {
|
|
|
21186
21223
|
return ax.type === 'log' ? ax.l2r(d) : ax.d2r(d);
|
|
21187
21224
|
}
|
|
21188
21225
|
|
|
21189
|
-
},{"../../lib":
|
|
21226
|
+
},{"../../lib":233,"../../plot_api/plot_template":268,"../../registry":326}],93:[function(_dereq_,module,exports){
|
|
21190
21227
|
/**
|
|
21191
21228
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21192
21229
|
* All rights reserved.
|
|
@@ -21265,7 +21302,7 @@ module.exports = function handleAnnotationCommonDefaults(annIn, annOut, fullLayo
|
|
|
21265
21302
|
coerce('captureevents', !!hoverText);
|
|
21266
21303
|
};
|
|
21267
21304
|
|
|
21268
|
-
},{"../../lib":
|
|
21305
|
+
},{"../../lib":233,"../color":105}],94:[function(_dereq_,module,exports){
|
|
21269
21306
|
/**
|
|
21270
21307
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21271
21308
|
* All rights reserved.
|
|
@@ -21328,7 +21365,7 @@ module.exports = function convertCoords(gd, ax, newType, doExtra) {
|
|
|
21328
21365
|
}
|
|
21329
21366
|
};
|
|
21330
21367
|
|
|
21331
|
-
},{"../../lib/to_log_range":
|
|
21368
|
+
},{"../../lib/to_log_range":257,"fast-isnumeric":23}],95:[function(_dereq_,module,exports){
|
|
21332
21369
|
/**
|
|
21333
21370
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21334
21371
|
* All rights reserved.
|
|
@@ -21436,7 +21473,7 @@ function handleAnnotationDefaults(annIn, annOut, fullLayout) {
|
|
|
21436
21473
|
}
|
|
21437
21474
|
}
|
|
21438
21475
|
|
|
21439
|
-
},{"../../lib":
|
|
21476
|
+
},{"../../lib":233,"../../plots/array_container_defaults":274,"../../plots/cartesian/axes":279,"./attributes":90,"./common_defaults":93}],96:[function(_dereq_,module,exports){
|
|
21440
21477
|
/**
|
|
21441
21478
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21442
21479
|
* All rights reserved.
|
|
@@ -22197,7 +22234,7 @@ function drawRaw(gd, options, index, subplotId, xa, ya) {
|
|
|
22197
22234
|
} else annText.call(textLayout);
|
|
22198
22235
|
}
|
|
22199
22236
|
|
|
22200
|
-
},{"../../lib":
|
|
22237
|
+
},{"../../lib":233,"../../lib/setcursor":253,"../../lib/svg_text_utils":255,"../../plot_api/plot_template":268,"../../plots/cartesian/axes":279,"../../plots/plots":313,"../../registry":326,"../color":105,"../dragelement":124,"../drawing":127,"../fx":145,"./draw_arrow_head":97,"d3":21}],97:[function(_dereq_,module,exports){
|
|
22201
22238
|
/**
|
|
22202
22239
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22203
22240
|
* All rights reserved.
|
|
@@ -22353,7 +22390,7 @@ module.exports = function drawArrowHead(el3, ends, options) {
|
|
|
22353
22390
|
if(doEnd) drawhead(headStyle, end, endRot, scale);
|
|
22354
22391
|
};
|
|
22355
22392
|
|
|
22356
|
-
},{"../../lib":
|
|
22393
|
+
},{"../../lib":233,"../color":105,"./arrow_paths":89,"d3":21}],98:[function(_dereq_,module,exports){
|
|
22357
22394
|
/**
|
|
22358
22395
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22359
22396
|
* All rights reserved.
|
|
@@ -22387,7 +22424,7 @@ module.exports = {
|
|
|
22387
22424
|
convertCoords: _dereq_('./convert_coords')
|
|
22388
22425
|
};
|
|
22389
22426
|
|
|
22390
|
-
},{"../../plots/cartesian/include_components":
|
|
22427
|
+
},{"../../plots/cartesian/include_components":291,"./attributes":90,"./calc_autorange":91,"./click":92,"./convert_coords":94,"./defaults":95,"./draw":96}],99:[function(_dereq_,module,exports){
|
|
22391
22428
|
/**
|
|
22392
22429
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22393
22430
|
* All rights reserved.
|
|
@@ -22475,7 +22512,7 @@ module.exports = overrideAll(templatedArray('annotation', {
|
|
|
22475
22512
|
// zref: 'z'
|
|
22476
22513
|
}), 'calc', 'from-root');
|
|
22477
22514
|
|
|
22478
|
-
},{"../../plot_api/edit_types":
|
|
22515
|
+
},{"../../plot_api/edit_types":261,"../../plot_api/plot_template":268,"../annotations/attributes":90}],100:[function(_dereq_,module,exports){
|
|
22479
22516
|
/**
|
|
22480
22517
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22481
22518
|
* All rights reserved.
|
|
@@ -22540,7 +22577,7 @@ function mockAnnAxes(ann, scene) {
|
|
|
22540
22577
|
};
|
|
22541
22578
|
}
|
|
22542
22579
|
|
|
22543
|
-
},{"../../lib":
|
|
22580
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279}],101:[function(_dereq_,module,exports){
|
|
22544
22581
|
/**
|
|
22545
22582
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22546
22583
|
* All rights reserved.
|
|
@@ -22616,7 +22653,7 @@ function handleAnnotationDefaults(annIn, annOut, sceneLayout, opts) {
|
|
|
22616
22653
|
}
|
|
22617
22654
|
}
|
|
22618
22655
|
|
|
22619
|
-
},{"../../lib":
|
|
22656
|
+
},{"../../lib":233,"../../plots/array_container_defaults":274,"../../plots/cartesian/axes":279,"../annotations/common_defaults":93,"./attributes":99}],102:[function(_dereq_,module,exports){
|
|
22620
22657
|
/**
|
|
22621
22658
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22622
22659
|
* All rights reserved.
|
|
@@ -22668,7 +22705,7 @@ module.exports = function draw(scene) {
|
|
|
22668
22705
|
}
|
|
22669
22706
|
};
|
|
22670
22707
|
|
|
22671
|
-
},{"../../plots/gl3d/project":
|
|
22708
|
+
},{"../../plots/gl3d/project":310,"../annotations/draw":96}],103:[function(_dereq_,module,exports){
|
|
22672
22709
|
/**
|
|
22673
22710
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22674
22711
|
* All rights reserved.
|
|
@@ -22716,7 +22753,7 @@ function includeGL3D(layoutIn, layoutOut) {
|
|
|
22716
22753
|
}
|
|
22717
22754
|
}
|
|
22718
22755
|
|
|
22719
|
-
},{"../../lib":
|
|
22756
|
+
},{"../../lib":233,"../../registry":326,"./attributes":99,"./convert":100,"./defaults":101,"./draw":102}],104:[function(_dereq_,module,exports){
|
|
22720
22757
|
/**
|
|
22721
22758
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22722
22759
|
* All rights reserved.
|
|
@@ -22756,7 +22793,7 @@ exports.borderLine = '#BEC8D9';
|
|
|
22756
22793
|
// gives back exactly lightLine if the other colors are defaults.
|
|
22757
22794
|
exports.lightFraction = 100 * (0xe - 0x4) / (0xf - 0x4);
|
|
22758
22795
|
|
|
22759
|
-
},{}],
|
|
22796
|
+
},{}],105:[function(_dereq_,module,exports){
|
|
22760
22797
|
/**
|
|
22761
22798
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22762
22799
|
* All rights reserved.
|
|
@@ -22930,7 +22967,7 @@ function cleanOne(val) {
|
|
|
22930
22967
|
return 'rgb(' + rgbStr + ')';
|
|
22931
22968
|
}
|
|
22932
22969
|
|
|
22933
|
-
},{"./attributes":
|
|
22970
|
+
},{"./attributes":104,"fast-isnumeric":23,"tinycolor2":88}],106:[function(_dereq_,module,exports){
|
|
22934
22971
|
/**
|
|
22935
22972
|
* Copyright 2012-2020, Plotly, Inc.
|
|
22936
22973
|
* All rights reserved.
|
|
@@ -23121,7 +23158,7 @@ module.exports = overrideAll({
|
|
|
23121
23158
|
}
|
|
23122
23159
|
}, 'colorbars', 'from-root');
|
|
23123
23160
|
|
|
23124
|
-
},{"../../lib/extend":
|
|
23161
|
+
},{"../../lib/extend":227,"../../plot_api/edit_types":261,"../../plots/cartesian/layout_attributes":293,"../../plots/font_attributes":307}],107:[function(_dereq_,module,exports){
|
|
23125
23162
|
/**
|
|
23126
23163
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23127
23164
|
* All rights reserved.
|
|
@@ -23149,7 +23186,7 @@ module.exports = {
|
|
|
23149
23186
|
}
|
|
23150
23187
|
};
|
|
23151
23188
|
|
|
23152
|
-
},{}],
|
|
23189
|
+
},{}],108:[function(_dereq_,module,exports){
|
|
23153
23190
|
/**
|
|
23154
23191
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23155
23192
|
* All rights reserved.
|
|
@@ -23219,7 +23256,7 @@ module.exports = function colorbarDefaults(containerIn, containerOut, layout) {
|
|
|
23219
23256
|
coerce('title.side');
|
|
23220
23257
|
};
|
|
23221
23258
|
|
|
23222
|
-
},{"../../lib":
|
|
23259
|
+
},{"../../lib":233,"../../plot_api/plot_template":268,"../../plots/cartesian/tick_label_defaults":300,"../../plots/cartesian/tick_mark_defaults":301,"../../plots/cartesian/tick_value_defaults":302,"./attributes":106}],109:[function(_dereq_,module,exports){
|
|
23223
23260
|
/**
|
|
23224
23261
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23225
23262
|
* All rights reserved.
|
|
@@ -23953,7 +23990,7 @@ module.exports = {
|
|
|
23953
23990
|
draw: draw
|
|
23954
23991
|
};
|
|
23955
23992
|
|
|
23956
|
-
},{"../../constants/alignment":
|
|
23993
|
+
},{"../../constants/alignment":207,"../../lib":233,"../../lib/extend":227,"../../lib/setcursor":253,"../../lib/svg_text_utils":255,"../../plots/cartesian/axes":279,"../../plots/cartesian/axis_defaults":281,"../../plots/cartesian/layout_attributes":293,"../../plots/cartesian/position_defaults":296,"../../plots/plots":313,"../../registry":326,"../color":105,"../colorscale/helpers":116,"../dragelement":124,"../drawing":127,"../titles":200,"./constants":107,"d3":21,"tinycolor2":88}],110:[function(_dereq_,module,exports){
|
|
23957
23994
|
/**
|
|
23958
23995
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23959
23996
|
* All rights reserved.
|
|
@@ -23972,7 +24009,7 @@ module.exports = function hasColorbar(container) {
|
|
|
23972
24009
|
return Lib.isPlainObject(container.colorbar);
|
|
23973
24010
|
};
|
|
23974
24011
|
|
|
23975
|
-
},{"../../lib":
|
|
24012
|
+
},{"../../lib":233}],111:[function(_dereq_,module,exports){
|
|
23976
24013
|
/**
|
|
23977
24014
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23978
24015
|
* All rights reserved.
|
|
@@ -23994,7 +24031,7 @@ module.exports = {
|
|
|
23994
24031
|
hasColorbar: _dereq_('./has_colorbar')
|
|
23995
24032
|
};
|
|
23996
24033
|
|
|
23997
|
-
},{"./attributes":
|
|
24034
|
+
},{"./attributes":106,"./defaults":108,"./draw":109,"./has_colorbar":110}],112:[function(_dereq_,module,exports){
|
|
23998
24035
|
/**
|
|
23999
24036
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24000
24037
|
* All rights reserved.
|
|
@@ -24202,7 +24239,7 @@ module.exports = function colorScaleAttrs(context, opts) {
|
|
|
24202
24239
|
return attrs;
|
|
24203
24240
|
};
|
|
24204
24241
|
|
|
24205
|
-
},{"../../lib/regex":
|
|
24242
|
+
},{"../../lib/regex":249,"../colorbar/attributes":106,"./scales.js":120}],113:[function(_dereq_,module,exports){
|
|
24206
24243
|
/**
|
|
24207
24244
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24208
24245
|
* All rights reserved.
|
|
@@ -24281,7 +24318,7 @@ module.exports = function calc(gd, trace, opts) {
|
|
|
24281
24318
|
}
|
|
24282
24319
|
};
|
|
24283
24320
|
|
|
24284
|
-
},{"../../lib":
|
|
24321
|
+
},{"../../lib":233,"./helpers":116,"fast-isnumeric":23}],114:[function(_dereq_,module,exports){
|
|
24285
24322
|
/**
|
|
24286
24323
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24287
24324
|
* All rights reserved.
|
|
@@ -24358,7 +24395,7 @@ module.exports = function crossTraceDefaults(fullData, fullLayout) {
|
|
|
24358
24395
|
}
|
|
24359
24396
|
};
|
|
24360
24397
|
|
|
24361
|
-
},{"../../lib":
|
|
24398
|
+
},{"../../lib":233,"./helpers":116}],115:[function(_dereq_,module,exports){
|
|
24362
24399
|
/**
|
|
24363
24400
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24364
24401
|
* All rights reserved.
|
|
@@ -24483,7 +24520,7 @@ module.exports = function colorScaleDefaults(parentContIn, parentContOut, layout
|
|
|
24483
24520
|
}
|
|
24484
24521
|
};
|
|
24485
24522
|
|
|
24486
|
-
},{"../../lib":
|
|
24523
|
+
},{"../../lib":233,"../../registry":326,"../colorbar/defaults":108,"../colorbar/has_colorbar":110,"./scales":120,"fast-isnumeric":23}],116:[function(_dereq_,module,exports){
|
|
24487
24524
|
/**
|
|
24488
24525
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24489
24526
|
* All rights reserved.
|
|
@@ -24723,7 +24760,7 @@ module.exports = {
|
|
|
24723
24760
|
makeColorScaleFuncFromTrace: makeColorScaleFuncFromTrace
|
|
24724
24761
|
};
|
|
24725
24762
|
|
|
24726
|
-
},{"../../lib":
|
|
24763
|
+
},{"../../lib":233,"../color":105,"./scales":120,"d3":21,"fast-isnumeric":23,"tinycolor2":88}],117:[function(_dereq_,module,exports){
|
|
24727
24764
|
/**
|
|
24728
24765
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24729
24766
|
* All rights reserved.
|
|
@@ -24751,7 +24788,7 @@ module.exports = {
|
|
|
24751
24788
|
calc: _dereq_('./calc'),
|
|
24752
24789
|
|
|
24753
24790
|
// ./scales.js is required in lib/coerce.js ;
|
|
24754
|
-
// it needs to be a
|
|
24791
|
+
// it needs to be a separate module to avoid circular a dependency
|
|
24755
24792
|
scales: scales.scales,
|
|
24756
24793
|
defaultScale: scales.defaultScale,
|
|
24757
24794
|
getScale: scales.get,
|
|
@@ -24765,7 +24802,7 @@ module.exports = {
|
|
|
24765
24802
|
makeColorScaleFuncFromTrace: helpers.makeColorScaleFuncFromTrace
|
|
24766
24803
|
};
|
|
24767
24804
|
|
|
24768
|
-
},{"./attributes":
|
|
24805
|
+
},{"./attributes":112,"./calc":113,"./cross_trace_defaults":114,"./defaults":115,"./helpers":116,"./layout_attributes":118,"./layout_defaults":119,"./scales":120}],118:[function(_dereq_,module,exports){
|
|
24769
24806
|
/**
|
|
24770
24807
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24771
24808
|
* All rights reserved.
|
|
@@ -24826,7 +24863,7 @@ module.exports = {
|
|
|
24826
24863
|
}))
|
|
24827
24864
|
};
|
|
24828
24865
|
|
|
24829
|
-
},{"../../lib/extend":
|
|
24866
|
+
},{"../../lib/extend":227,"./attributes":112,"./scales":120}],119:[function(_dereq_,module,exports){
|
|
24830
24867
|
/**
|
|
24831
24868
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24832
24869
|
* All rights reserved.
|
|
@@ -24877,7 +24914,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut) {
|
|
|
24877
24914
|
}
|
|
24878
24915
|
};
|
|
24879
24916
|
|
|
24880
|
-
},{"../../lib":
|
|
24917
|
+
},{"../../lib":233,"../../plot_api/plot_template":268,"./defaults":115,"./layout_attributes":118}],120:[function(_dereq_,module,exports){
|
|
24881
24918
|
/**
|
|
24882
24919
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24883
24920
|
* All rights reserved.
|
|
@@ -25081,7 +25118,7 @@ module.exports = {
|
|
|
25081
25118
|
isValid: isValidScale
|
|
25082
25119
|
};
|
|
25083
25120
|
|
|
25084
|
-
},{"tinycolor2":
|
|
25121
|
+
},{"tinycolor2":88}],121:[function(_dereq_,module,exports){
|
|
25085
25122
|
/**
|
|
25086
25123
|
* Copyright 2012-2020, Plotly, Inc.
|
|
25087
25124
|
* All rights reserved.
|
|
@@ -25114,7 +25151,7 @@ module.exports = function align(v, dv, v0, v1, anchor) {
|
|
|
25114
25151
|
return vc;
|
|
25115
25152
|
};
|
|
25116
25153
|
|
|
25117
|
-
},{}],
|
|
25154
|
+
},{}],122:[function(_dereq_,module,exports){
|
|
25118
25155
|
/**
|
|
25119
25156
|
* Copyright 2012-2020, Plotly, Inc.
|
|
25120
25157
|
* All rights reserved.
|
|
@@ -25152,7 +25189,7 @@ module.exports = function getCursor(x, y, xanchor, yanchor) {
|
|
|
25152
25189
|
return cursorset[y][x];
|
|
25153
25190
|
};
|
|
25154
25191
|
|
|
25155
|
-
},{"../../lib":
|
|
25192
|
+
},{"../../lib":233}],123:[function(_dereq_,module,exports){
|
|
25156
25193
|
/**
|
|
25157
25194
|
* Copyright 2012-2020, Plotly, Inc.
|
|
25158
25195
|
* All rights reserved.
|
|
@@ -25211,7 +25248,7 @@ exports.selectingOrDrawing = function(dragmode) {
|
|
|
25211
25248
|
);
|
|
25212
25249
|
};
|
|
25213
25250
|
|
|
25214
|
-
},{}],
|
|
25251
|
+
},{}],124:[function(_dereq_,module,exports){
|
|
25215
25252
|
/**
|
|
25216
25253
|
* Copyright 2012-2020, Plotly, Inc.
|
|
25217
25254
|
* All rights reserved.
|
|
@@ -25503,7 +25540,7 @@ function pointerOffset(e) {
|
|
|
25503
25540
|
);
|
|
25504
25541
|
}
|
|
25505
25542
|
|
|
25506
|
-
},{"../../lib":
|
|
25543
|
+
},{"../../lib":233,"../../plots/cartesian/constants":285,"./align":121,"./cursor":122,"./unhover":125,"has-hover":54,"has-passive-events":55,"mouse-event-offset":76}],125:[function(_dereq_,module,exports){
|
|
25507
25544
|
/**
|
|
25508
25545
|
* Copyright 2012-2020, Plotly, Inc.
|
|
25509
25546
|
* All rights reserved.
|
|
@@ -25558,7 +25595,7 @@ unhover.raw = function raw(gd, evt) {
|
|
|
25558
25595
|
}
|
|
25559
25596
|
};
|
|
25560
25597
|
|
|
25561
|
-
},{"../../lib/dom":
|
|
25598
|
+
},{"../../lib/dom":225,"../../lib/events":226,"../../lib/throttle":256,"../fx/constants":139}],126:[function(_dereq_,module,exports){
|
|
25562
25599
|
/**
|
|
25563
25600
|
* Copyright 2012-2020, Plotly, Inc.
|
|
25564
25601
|
* All rights reserved.
|
|
@@ -25583,7 +25620,7 @@ exports.dash = {
|
|
|
25583
25620
|
|
|
25584
25621
|
};
|
|
25585
25622
|
|
|
25586
|
-
},{}],
|
|
25623
|
+
},{}],127:[function(_dereq_,module,exports){
|
|
25587
25624
|
/**
|
|
25588
25625
|
* Copyright 2012-2020, Plotly, Inc.
|
|
25589
25626
|
* All rights reserved.
|
|
@@ -26780,7 +26817,7 @@ drawing.setTextPointsScale = function(selection, xScale, yScale) {
|
|
|
26780
26817
|
});
|
|
26781
26818
|
};
|
|
26782
26819
|
|
|
26783
|
-
},{"../../components/fx/helpers":
|
|
26820
|
+
},{"../../components/fx/helpers":141,"../../constants/alignment":207,"../../constants/interactions":211,"../../constants/xmlns_namespaces":213,"../../lib":233,"../../lib/svg_text_utils":255,"../../registry":326,"../../traces/scatter/make_bubble_size_func":464,"../../traces/scatter/subtypes":472,"../color":105,"../colorscale":117,"./symbol_defs":128,"d3":21,"fast-isnumeric":23,"tinycolor2":88}],128:[function(_dereq_,module,exports){
|
|
26784
26821
|
/**
|
|
26785
26822
|
* Copyright 2012-2020, Plotly, Inc.
|
|
26786
26823
|
* All rights reserved.
|
|
@@ -27344,7 +27381,7 @@ module.exports = {
|
|
|
27344
27381
|
}
|
|
27345
27382
|
};
|
|
27346
27383
|
|
|
27347
|
-
},{"d3":21}],
|
|
27384
|
+
},{"d3":21}],129:[function(_dereq_,module,exports){
|
|
27348
27385
|
/**
|
|
27349
27386
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27350
27387
|
* All rights reserved.
|
|
@@ -27459,7 +27496,7 @@ module.exports = {
|
|
|
27459
27496
|
}
|
|
27460
27497
|
};
|
|
27461
27498
|
|
|
27462
|
-
},{}],
|
|
27499
|
+
},{}],130:[function(_dereq_,module,exports){
|
|
27463
27500
|
/**
|
|
27464
27501
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27465
27502
|
* All rights reserved.
|
|
@@ -27545,7 +27582,7 @@ function calcOneAxis(calcTrace, trace, axis, coord) {
|
|
|
27545
27582
|
baseExtremes.max = baseExtremes.max.concat(extremes.max);
|
|
27546
27583
|
}
|
|
27547
27584
|
|
|
27548
|
-
},{"../../lib":
|
|
27585
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"../../registry":326,"./compute_error":131,"fast-isnumeric":23}],131:[function(_dereq_,module,exports){
|
|
27549
27586
|
/**
|
|
27550
27587
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27551
27588
|
* All rights reserved.
|
|
@@ -27646,7 +27683,7 @@ function makeComputeErrorValue(type, value) {
|
|
|
27646
27683
|
}
|
|
27647
27684
|
}
|
|
27648
27685
|
|
|
27649
|
-
},{}],
|
|
27686
|
+
},{}],132:[function(_dereq_,module,exports){
|
|
27650
27687
|
/**
|
|
27651
27688
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27652
27689
|
* All rights reserved.
|
|
@@ -27721,7 +27758,7 @@ module.exports = function(traceIn, traceOut, defaultColor, opts) {
|
|
|
27721
27758
|
}
|
|
27722
27759
|
};
|
|
27723
27760
|
|
|
27724
|
-
},{"../../lib":
|
|
27761
|
+
},{"../../lib":233,"../../plot_api/plot_template":268,"../../registry":326,"./attributes":129,"fast-isnumeric":23}],133:[function(_dereq_,module,exports){
|
|
27725
27762
|
/**
|
|
27726
27763
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27727
27764
|
* All rights reserved.
|
|
@@ -27790,7 +27827,7 @@ function hoverInfo(calcPoint, trace, hoverPoint) {
|
|
|
27790
27827
|
}
|
|
27791
27828
|
}
|
|
27792
27829
|
|
|
27793
|
-
},{"../../lib":
|
|
27830
|
+
},{"../../lib":233,"../../plot_api/edit_types":261,"./attributes":129,"./calc":130,"./compute_error":131,"./defaults":132,"./plot":134,"./style":135}],134:[function(_dereq_,module,exports){
|
|
27794
27831
|
/**
|
|
27795
27832
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27796
27833
|
* All rights reserved.
|
|
@@ -27962,7 +27999,7 @@ function errorCoords(d, xa, ya) {
|
|
|
27962
27999
|
return out;
|
|
27963
28000
|
}
|
|
27964
28001
|
|
|
27965
|
-
},{"../../traces/scatter/subtypes":
|
|
28002
|
+
},{"../../traces/scatter/subtypes":472,"../drawing":127,"d3":21,"fast-isnumeric":23}],135:[function(_dereq_,module,exports){
|
|
27966
28003
|
/**
|
|
27967
28004
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27968
28005
|
* All rights reserved.
|
|
@@ -27999,7 +28036,7 @@ module.exports = function style(traces) {
|
|
|
27999
28036
|
});
|
|
28000
28037
|
};
|
|
28001
28038
|
|
|
28002
|
-
},{"../color":
|
|
28039
|
+
},{"../color":105,"d3":21}],136:[function(_dereq_,module,exports){
|
|
28003
28040
|
/**
|
|
28004
28041
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28005
28042
|
* All rights reserved.
|
|
@@ -28035,7 +28072,7 @@ module.exports = {
|
|
|
28035
28072
|
}
|
|
28036
28073
|
};
|
|
28037
28074
|
|
|
28038
|
-
},{"../../lib/extend":
|
|
28075
|
+
},{"../../lib/extend":227,"../../plots/font_attributes":307,"./layout_attributes":146}],137:[function(_dereq_,module,exports){
|
|
28039
28076
|
/**
|
|
28040
28077
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28041
28078
|
* All rights reserved.
|
|
@@ -28094,7 +28131,7 @@ function paste(traceAttr, cd, cdAttr, fn) {
|
|
|
28094
28131
|
}
|
|
28095
28132
|
}
|
|
28096
28133
|
|
|
28097
|
-
},{"../../lib":
|
|
28134
|
+
},{"../../lib":233,"../../registry":326}],138:[function(_dereq_,module,exports){
|
|
28098
28135
|
/**
|
|
28099
28136
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28100
28137
|
* All rights reserved.
|
|
@@ -28131,7 +28168,7 @@ module.exports = function click(gd, evt, subplot) {
|
|
|
28131
28168
|
}
|
|
28132
28169
|
};
|
|
28133
28170
|
|
|
28134
|
-
},{"../../registry":
|
|
28171
|
+
},{"../../registry":326,"./hover":142}],139:[function(_dereq_,module,exports){
|
|
28135
28172
|
/**
|
|
28136
28173
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28137
28174
|
* All rights reserved.
|
|
@@ -28163,7 +28200,7 @@ module.exports = {
|
|
|
28163
28200
|
HOVERID: '-hover'
|
|
28164
28201
|
};
|
|
28165
28202
|
|
|
28166
|
-
},{}],
|
|
28203
|
+
},{}],140:[function(_dereq_,module,exports){
|
|
28167
28204
|
/**
|
|
28168
28205
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28169
28206
|
* All rights reserved.
|
|
@@ -28189,7 +28226,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
28189
28226
|
handleHoverLabelDefaults(traceIn, traceOut, coerce, opts);
|
|
28190
28227
|
};
|
|
28191
28228
|
|
|
28192
|
-
},{"../../lib":
|
|
28229
|
+
},{"../../lib":233,"./attributes":136,"./hoverlabel_defaults":143}],141:[function(_dereq_,module,exports){
|
|
28193
28230
|
/**
|
|
28194
28231
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28195
28232
|
* All rights reserved.
|
|
@@ -28451,7 +28488,7 @@ exports.isXYhover = function(hovermode) {
|
|
|
28451
28488
|
return !!xyHoverMode[hovermode];
|
|
28452
28489
|
};
|
|
28453
28490
|
|
|
28454
|
-
},{"../../lib":
|
|
28491
|
+
},{"../../lib":233}],142:[function(_dereq_,module,exports){
|
|
28455
28492
|
/**
|
|
28456
28493
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28457
28494
|
* All rights reserved.
|
|
@@ -29760,7 +29797,7 @@ function getHoverLabelText(d, showCommonLabel, hovermode, fullLayout, t0, g) {
|
|
|
29760
29797
|
|
|
29761
29798
|
// Make groups of touching points, and within each group
|
|
29762
29799
|
// move each point so that no labels overlap, but the average
|
|
29763
|
-
// label position is the same as it was before moving.
|
|
29800
|
+
// label position is the same as it was before moving. Incidentally,
|
|
29764
29801
|
// this is equivalent to saying all the labels are on equal linear
|
|
29765
29802
|
// springs about their initial position. Initially, each point is
|
|
29766
29803
|
// its own group, but as we find overlaps we will clump the points.
|
|
@@ -30323,7 +30360,7 @@ function plainText(s, len) {
|
|
|
30323
30360
|
});
|
|
30324
30361
|
}
|
|
30325
30362
|
|
|
30326
|
-
},{"../../lib":
|
|
30363
|
+
},{"../../lib":233,"../../lib/events":226,"../../lib/override_cursor":244,"../../lib/svg_text_utils":255,"../../plots/cartesian/axes":279,"../../registry":326,"../color":105,"../dragelement":124,"../drawing":127,"../legend/defaults":157,"../legend/draw":158,"./constants":139,"./helpers":141,"d3":21,"fast-isnumeric":23,"tinycolor2":88}],143:[function(_dereq_,module,exports){
|
|
30327
30364
|
/**
|
|
30328
30365
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30329
30366
|
* All rights reserved.
|
|
@@ -30369,7 +30406,7 @@ module.exports = function handleHoverLabelDefaults(contIn, contOut, coerce, opts
|
|
|
30369
30406
|
coerce('hoverlabel.align', opts.align);
|
|
30370
30407
|
};
|
|
30371
30408
|
|
|
30372
|
-
},{"../../lib":
|
|
30409
|
+
},{"../../lib":233,"../color":105,"./helpers":141}],144:[function(_dereq_,module,exports){
|
|
30373
30410
|
/**
|
|
30374
30411
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30375
30412
|
* All rights reserved.
|
|
@@ -30425,7 +30462,7 @@ function isHoriz(fullData, fullLayout) {
|
|
|
30425
30462
|
return true;
|
|
30426
30463
|
}
|
|
30427
30464
|
|
|
30428
|
-
},{"../../lib":
|
|
30465
|
+
},{"../../lib":233,"./layout_attributes":146}],145:[function(_dereq_,module,exports){
|
|
30429
30466
|
/**
|
|
30430
30467
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30431
30468
|
* All rights reserved.
|
|
@@ -30504,7 +30541,7 @@ function castHoverinfo(trace, fullLayout, ptNumber) {
|
|
|
30504
30541
|
return Lib.castOption(trace, ptNumber, 'hoverinfo', _coerce);
|
|
30505
30542
|
}
|
|
30506
30543
|
|
|
30507
|
-
},{"../../lib":
|
|
30544
|
+
},{"../../lib":233,"../dragelement":124,"./attributes":136,"./calc":137,"./click":138,"./constants":139,"./defaults":140,"./helpers":141,"./hover":142,"./layout_attributes":146,"./layout_defaults":147,"./layout_global_defaults":148,"d3":21}],146:[function(_dereq_,module,exports){
|
|
30508
30545
|
/**
|
|
30509
30546
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30510
30547
|
* All rights reserved.
|
|
@@ -30620,7 +30657,7 @@ module.exports = {
|
|
|
30620
30657
|
}
|
|
30621
30658
|
};
|
|
30622
30659
|
|
|
30623
|
-
},{"../../plots/font_attributes":
|
|
30660
|
+
},{"../../plots/font_attributes":307,"./constants":139}],147:[function(_dereq_,module,exports){
|
|
30624
30661
|
/**
|
|
30625
30662
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30626
30663
|
* All rights reserved.
|
|
@@ -30668,7 +30705,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, fullData) {
|
|
|
30668
30705
|
handleHoverLabelDefaults(layoutIn, layoutOut, coerce);
|
|
30669
30706
|
};
|
|
30670
30707
|
|
|
30671
|
-
},{"../../lib":
|
|
30708
|
+
},{"../../lib":233,"./helpers":141,"./hoverlabel_defaults":143,"./hovermode_defaults":144,"./layout_attributes":146}],148:[function(_dereq_,module,exports){
|
|
30672
30709
|
/**
|
|
30673
30710
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30674
30711
|
* All rights reserved.
|
|
@@ -30691,7 +30728,7 @@ module.exports = function supplyLayoutGlobalDefaults(layoutIn, layoutOut) {
|
|
|
30691
30728
|
handleHoverLabelDefaults(layoutIn, layoutOut, coerce);
|
|
30692
30729
|
};
|
|
30693
30730
|
|
|
30694
|
-
},{"../../lib":
|
|
30731
|
+
},{"../../lib":233,"./hoverlabel_defaults":143,"./layout_attributes":146}],149:[function(_dereq_,module,exports){
|
|
30695
30732
|
/**
|
|
30696
30733
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30697
30734
|
* All rights reserved.
|
|
@@ -31065,7 +31102,7 @@ module.exports = {
|
|
|
31065
31102
|
contentDefaults: contentDefaults
|
|
31066
31103
|
};
|
|
31067
31104
|
|
|
31068
|
-
},{"../../lib":
|
|
31105
|
+
},{"../../lib":233,"../../lib/regex":249,"../../plot_api/plot_template":268,"../../plots/cartesian/constants":285,"../../plots/domain":306}],150:[function(_dereq_,module,exports){
|
|
31069
31106
|
/**
|
|
31070
31107
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31071
31108
|
* All rights reserved.
|
|
@@ -31201,7 +31238,7 @@ module.exports = templatedArray('image', {
|
|
|
31201
31238
|
editType: 'arraydraw'
|
|
31202
31239
|
});
|
|
31203
31240
|
|
|
31204
|
-
},{"../../constants/axis_placeable_objects":
|
|
31241
|
+
},{"../../constants/axis_placeable_objects":208,"../../plot_api/plot_template":268,"../../plots/cartesian/constants":285}],151:[function(_dereq_,module,exports){
|
|
31205
31242
|
/**
|
|
31206
31243
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31207
31244
|
* All rights reserved.
|
|
@@ -31282,7 +31319,7 @@ module.exports = function convertCoords(gd, ax, newType, doExtra) {
|
|
|
31282
31319
|
}
|
|
31283
31320
|
};
|
|
31284
31321
|
|
|
31285
|
-
},{"../../lib/to_log_range":
|
|
31322
|
+
},{"../../lib/to_log_range":257,"fast-isnumeric":23}],152:[function(_dereq_,module,exports){
|
|
31286
31323
|
/**
|
|
31287
31324
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31288
31325
|
* All rights reserved.
|
|
@@ -31347,7 +31384,7 @@ function imageDefaults(imageIn, imageOut, fullLayout) {
|
|
|
31347
31384
|
return imageOut;
|
|
31348
31385
|
}
|
|
31349
31386
|
|
|
31350
|
-
},{"../../lib":
|
|
31387
|
+
},{"../../lib":233,"../../plots/array_container_defaults":274,"../../plots/cartesian/axes":279,"./attributes":150}],153:[function(_dereq_,module,exports){
|
|
31351
31388
|
/**
|
|
31352
31389
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31353
31390
|
* All rights reserved.
|
|
@@ -31605,7 +31642,7 @@ module.exports = function draw(gd) {
|
|
|
31605
31642
|
}
|
|
31606
31643
|
};
|
|
31607
31644
|
|
|
31608
|
-
},{"../../constants/xmlns_namespaces":
|
|
31645
|
+
},{"../../constants/xmlns_namespaces":213,"../../plots/cartesian/axes":279,"../../plots/cartesian/axis_ids":282,"../drawing":127,"d3":21}],154:[function(_dereq_,module,exports){
|
|
31609
31646
|
/**
|
|
31610
31647
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31611
31648
|
* All rights reserved.
|
|
@@ -31629,7 +31666,7 @@ module.exports = {
|
|
|
31629
31666
|
convertCoords: _dereq_('./convert_coords')
|
|
31630
31667
|
};
|
|
31631
31668
|
|
|
31632
|
-
},{"../../plots/cartesian/include_components":
|
|
31669
|
+
},{"../../plots/cartesian/include_components":291,"./attributes":150,"./convert_coords":151,"./defaults":152,"./draw":153}],155:[function(_dereq_,module,exports){
|
|
31633
31670
|
/**
|
|
31634
31671
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31635
31672
|
* All rights reserved.
|
|
@@ -31798,7 +31835,7 @@ module.exports = {
|
|
|
31798
31835
|
editType: 'legend'
|
|
31799
31836
|
};
|
|
31800
31837
|
|
|
31801
|
-
},{"../../plots/font_attributes":
|
|
31838
|
+
},{"../../plots/font_attributes":307,"../color/attributes":104}],156:[function(_dereq_,module,exports){
|
|
31802
31839
|
/**
|
|
31803
31840
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31804
31841
|
* All rights reserved.
|
|
@@ -31822,7 +31859,7 @@ module.exports = {
|
|
|
31822
31859
|
itemGap: 5
|
|
31823
31860
|
};
|
|
31824
31861
|
|
|
31825
|
-
},{}],
|
|
31862
|
+
},{}],157:[function(_dereq_,module,exports){
|
|
31826
31863
|
/**
|
|
31827
31864
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31828
31865
|
* All rights reserved.
|
|
@@ -31957,7 +31994,7 @@ module.exports = function legendDefaults(layoutIn, layoutOut, fullData) {
|
|
|
31957
31994
|
}
|
|
31958
31995
|
};
|
|
31959
31996
|
|
|
31960
|
-
},{"../../lib":
|
|
31997
|
+
},{"../../lib":233,"../../plot_api/plot_template":268,"../../plots/layout_attributes":311,"../../registry":326,"./attributes":155,"./helpers":161}],158:[function(_dereq_,module,exports){
|
|
31961
31998
|
/**
|
|
31962
31999
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31963
32000
|
* All rights reserved.
|
|
@@ -32754,7 +32791,7 @@ function getYanchor(opts) {
|
|
|
32754
32791
|
'top';
|
|
32755
32792
|
}
|
|
32756
32793
|
|
|
32757
|
-
},{"../../constants/alignment":
|
|
32794
|
+
},{"../../constants/alignment":207,"../../lib":233,"../../lib/events":226,"../../lib/svg_text_utils":255,"../../plots/plots":313,"../../registry":326,"../color":105,"../dragelement":124,"../drawing":127,"./constants":156,"./get_legend_data":159,"./handle_click":160,"./helpers":161,"./style":163,"d3":21}],159:[function(_dereq_,module,exports){
|
|
32758
32795
|
/**
|
|
32759
32796
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32760
32797
|
* All rights reserved.
|
|
@@ -32863,7 +32900,7 @@ module.exports = function getLegendData(calcdata, opts) {
|
|
|
32863
32900
|
return legendData;
|
|
32864
32901
|
};
|
|
32865
32902
|
|
|
32866
|
-
},{"../../registry":
|
|
32903
|
+
},{"../../registry":326,"./helpers":161}],160:[function(_dereq_,module,exports){
|
|
32867
32904
|
/**
|
|
32868
32905
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32869
32906
|
* All rights reserved.
|
|
@@ -33102,7 +33139,7 @@ module.exports = function handleClick(g, gd, numClicks) {
|
|
|
33102
33139
|
}
|
|
33103
33140
|
};
|
|
33104
33141
|
|
|
33105
|
-
},{"../../lib":
|
|
33142
|
+
},{"../../lib":233,"../../registry":326}],161:[function(_dereq_,module,exports){
|
|
33106
33143
|
/**
|
|
33107
33144
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33108
33145
|
* All rights reserved.
|
|
@@ -33126,7 +33163,7 @@ exports.isReversed = function isReversed(legendLayout) {
|
|
|
33126
33163
|
return (legendLayout.traceorder || '').indexOf('reversed') !== -1;
|
|
33127
33164
|
};
|
|
33128
33165
|
|
|
33129
|
-
},{}],
|
|
33166
|
+
},{}],162:[function(_dereq_,module,exports){
|
|
33130
33167
|
/**
|
|
33131
33168
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33132
33169
|
* All rights reserved.
|
|
@@ -33150,7 +33187,7 @@ module.exports = {
|
|
|
33150
33187
|
style: _dereq_('./style')
|
|
33151
33188
|
};
|
|
33152
33189
|
|
|
33153
|
-
},{"./attributes":
|
|
33190
|
+
},{"./attributes":155,"./defaults":157,"./draw":158,"./style":163}],163:[function(_dereq_,module,exports){
|
|
33154
33191
|
/**
|
|
33155
33192
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33156
33193
|
* All rights reserved.
|
|
@@ -33783,7 +33820,7 @@ function getGradientDirection(reversescale, isRadial) {
|
|
|
33783
33820
|
return str + (reversescale ? '' : 'reversed');
|
|
33784
33821
|
}
|
|
33785
33822
|
|
|
33786
|
-
},{"../../lib":
|
|
33823
|
+
},{"../../lib":233,"../../registry":326,"../../traces/pie/helpers":439,"../../traces/pie/style_one":445,"../../traces/scatter/subtypes":472,"../color":105,"../colorscale/helpers":116,"../drawing":127,"./constants":156,"d3":21}],164:[function(_dereq_,module,exports){
|
|
33787
33824
|
/**
|
|
33788
33825
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33789
33826
|
* All rights reserved.
|
|
@@ -34519,7 +34556,7 @@ function resetView(gd, subplotType) {
|
|
|
34519
34556
|
Registry.call('_guiRelayout', gd, aObj);
|
|
34520
34557
|
}
|
|
34521
34558
|
|
|
34522
|
-
},{"../../fonts/ploticon":
|
|
34559
|
+
},{"../../fonts/ploticon":216,"../../lib":233,"../../plots/cartesian/axis_ids":282,"../../plots/plots":313,"../../registry":326,"../shapes/draw":186}],165:[function(_dereq_,module,exports){
|
|
34523
34560
|
/**
|
|
34524
34561
|
* Copyright 2012-2020, Plotly, Inc.
|
|
34525
34562
|
* All rights reserved.
|
|
@@ -34533,7 +34570,7 @@ function resetView(gd, subplotType) {
|
|
|
34533
34570
|
|
|
34534
34571
|
exports.manage = _dereq_('./manage');
|
|
34535
34572
|
|
|
34536
|
-
},{"./manage":
|
|
34573
|
+
},{"./manage":166}],166:[function(_dereq_,module,exports){
|
|
34537
34574
|
/**
|
|
34538
34575
|
* Copyright 2012-2020, Plotly, Inc.
|
|
34539
34576
|
* All rights reserved.
|
|
@@ -34829,7 +34866,7 @@ function fillCustomButton(customButtons) {
|
|
|
34829
34866
|
return customButtons;
|
|
34830
34867
|
}
|
|
34831
34868
|
|
|
34832
|
-
},{"../../plots/cartesian/axis_ids":
|
|
34869
|
+
},{"../../plots/cartesian/axis_ids":282,"../../registry":326,"../../traces/scatter/subtypes":472,"../fx/helpers":141,"./buttons":164,"./modebar":167}],167:[function(_dereq_,module,exports){
|
|
34833
34870
|
/**
|
|
34834
34871
|
* Copyright 2012-2020, Plotly, Inc.
|
|
34835
34872
|
* All rights reserved.
|
|
@@ -35175,7 +35212,7 @@ function createModeBar(gd, buttons) {
|
|
|
35175
35212
|
|
|
35176
35213
|
module.exports = createModeBar;
|
|
35177
35214
|
|
|
35178
|
-
},{"../../fonts/ploticon":
|
|
35215
|
+
},{"../../fonts/ploticon":216,"../../lib":233,"d3":21,"fast-isnumeric":23}],168:[function(_dereq_,module,exports){
|
|
35179
35216
|
/**
|
|
35180
35217
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35181
35218
|
* All rights reserved.
|
|
@@ -35311,7 +35348,7 @@ module.exports = {
|
|
|
35311
35348
|
editType: 'plot'
|
|
35312
35349
|
};
|
|
35313
35350
|
|
|
35314
|
-
},{"../../plot_api/plot_template":
|
|
35351
|
+
},{"../../plot_api/plot_template":268,"../../plots/font_attributes":307,"../color/attributes":104}],169:[function(_dereq_,module,exports){
|
|
35315
35352
|
/**
|
|
35316
35353
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35317
35354
|
* All rights reserved.
|
|
@@ -35340,7 +35377,7 @@ module.exports = {
|
|
|
35340
35377
|
darkAmount: 10
|
|
35341
35378
|
};
|
|
35342
35379
|
|
|
35343
|
-
},{}],
|
|
35380
|
+
},{}],170:[function(_dereq_,module,exports){
|
|
35344
35381
|
/**
|
|
35345
35382
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35346
35383
|
* All rights reserved.
|
|
@@ -35432,7 +35469,7 @@ function getPosDflt(containerOut, layout, counterAxes) {
|
|
|
35432
35469
|
return [containerOut.domain[0], posY + constants.yPad];
|
|
35433
35470
|
}
|
|
35434
35471
|
|
|
35435
|
-
},{"../../lib":
|
|
35472
|
+
},{"../../lib":233,"../../plot_api/plot_template":268,"../../plots/array_container_defaults":274,"../color":105,"./attributes":168,"./constants":169}],171:[function(_dereq_,module,exports){
|
|
35436
35473
|
/**
|
|
35437
35474
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35438
35475
|
* All rights reserved.
|
|
@@ -35687,7 +35724,7 @@ function reposition(gd, buttons, opts, axName, selector) {
|
|
|
35687
35724
|
selector.attr('transform', strTranslate(lx, ly));
|
|
35688
35725
|
}
|
|
35689
35726
|
|
|
35690
|
-
},{"../../constants/alignment":
|
|
35727
|
+
},{"../../constants/alignment":207,"../../lib":233,"../../lib/svg_text_utils":255,"../../plots/cartesian/axis_ids":282,"../../plots/plots":313,"../../registry":326,"../color":105,"../drawing":127,"./constants":169,"./get_update_object":172,"d3":21}],172:[function(_dereq_,module,exports){
|
|
35691
35728
|
/**
|
|
35692
35729
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35693
35730
|
* All rights reserved.
|
|
@@ -35741,7 +35778,7 @@ function getXRange(axisLayout, buttonLayout) {
|
|
|
35741
35778
|
return [range0, range1];
|
|
35742
35779
|
}
|
|
35743
35780
|
|
|
35744
|
-
},{"d3":21}],
|
|
35781
|
+
},{"d3":21}],173:[function(_dereq_,module,exports){
|
|
35745
35782
|
/**
|
|
35746
35783
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35747
35784
|
* All rights reserved.
|
|
@@ -35768,7 +35805,7 @@ module.exports = {
|
|
|
35768
35805
|
draw: _dereq_('./draw')
|
|
35769
35806
|
};
|
|
35770
35807
|
|
|
35771
|
-
},{"./attributes":
|
|
35808
|
+
},{"./attributes":168,"./defaults":170,"./draw":171}],174:[function(_dereq_,module,exports){
|
|
35772
35809
|
/**
|
|
35773
35810
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35774
35811
|
* All rights reserved.
|
|
@@ -35842,7 +35879,7 @@ module.exports = {
|
|
|
35842
35879
|
editType: 'calc'
|
|
35843
35880
|
};
|
|
35844
35881
|
|
|
35845
|
-
},{"../color/attributes":
|
|
35882
|
+
},{"../color/attributes":104}],175:[function(_dereq_,module,exports){
|
|
35846
35883
|
/**
|
|
35847
35884
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35848
35885
|
* All rights reserved.
|
|
@@ -35876,7 +35913,7 @@ module.exports = function calcAutorange(gd) {
|
|
|
35876
35913
|
}
|
|
35877
35914
|
};
|
|
35878
35915
|
|
|
35879
|
-
},{"../../plots/cartesian/autorange":
|
|
35916
|
+
},{"../../plots/cartesian/autorange":278,"../../plots/cartesian/axis_ids":282,"./constants":176}],176:[function(_dereq_,module,exports){
|
|
35880
35917
|
/**
|
|
35881
35918
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35882
35919
|
* All rights reserved.
|
|
@@ -35932,7 +35969,7 @@ module.exports = {
|
|
|
35932
35969
|
extraPad: 15
|
|
35933
35970
|
};
|
|
35934
35971
|
|
|
35935
|
-
},{}],
|
|
35972
|
+
},{}],177:[function(_dereq_,module,exports){
|
|
35936
35973
|
/**
|
|
35937
35974
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35938
35975
|
* All rights reserved.
|
|
@@ -36018,7 +36055,7 @@ module.exports = function handleDefaults(layoutIn, layoutOut, axName) {
|
|
|
36018
36055
|
containerOut._input = containerIn;
|
|
36019
36056
|
};
|
|
36020
36057
|
|
|
36021
|
-
},{"../../lib":
|
|
36058
|
+
},{"../../lib":233,"../../plot_api/plot_template":268,"../../plots/cartesian/axis_ids":282,"./attributes":174,"./oppaxis_attributes":181}],178:[function(_dereq_,module,exports){
|
|
36022
36059
|
/**
|
|
36023
36060
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36024
36061
|
* All rights reserved.
|
|
@@ -36662,7 +36699,7 @@ function drawGrabbers(rangeSlider, gd, axisOpts, opts) {
|
|
|
36662
36699
|
grabAreaMax.attr('height', opts._height);
|
|
36663
36700
|
}
|
|
36664
36701
|
|
|
36665
|
-
},{"../../lib":
|
|
36702
|
+
},{"../../lib":233,"../../lib/setcursor":253,"../../plots/cartesian":292,"../../plots/cartesian/axis_ids":282,"../../plots/plots":313,"../../registry":326,"../color":105,"../dragelement":124,"../drawing":127,"../titles":200,"./constants":176,"d3":21}],179:[function(_dereq_,module,exports){
|
|
36666
36703
|
/**
|
|
36667
36704
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36668
36705
|
* All rights reserved.
|
|
@@ -36737,7 +36774,7 @@ exports.autoMarginOpts = function(gd, ax) {
|
|
|
36737
36774
|
};
|
|
36738
36775
|
};
|
|
36739
36776
|
|
|
36740
|
-
},{"../../constants/alignment":
|
|
36777
|
+
},{"../../constants/alignment":207,"../../lib/svg_text_utils":255,"../../plots/cartesian/axis_ids":282,"./constants":176}],180:[function(_dereq_,module,exports){
|
|
36741
36778
|
/**
|
|
36742
36779
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36743
36780
|
* All rights reserved.
|
|
@@ -36776,7 +36813,7 @@ module.exports = {
|
|
|
36776
36813
|
autoMarginOpts: helpers.autoMarginOpts
|
|
36777
36814
|
};
|
|
36778
36815
|
|
|
36779
|
-
},{"../../lib":
|
|
36816
|
+
},{"../../lib":233,"./attributes":174,"./calc_autorange":175,"./defaults":177,"./draw":178,"./helpers":179,"./oppaxis_attributes":181}],181:[function(_dereq_,module,exports){
|
|
36780
36817
|
/**
|
|
36781
36818
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36782
36819
|
* All rights reserved.
|
|
@@ -36814,7 +36851,7 @@ module.exports = {
|
|
|
36814
36851
|
editType: 'calc'
|
|
36815
36852
|
};
|
|
36816
36853
|
|
|
36817
|
-
},{}],
|
|
36854
|
+
},{}],182:[function(_dereq_,module,exports){
|
|
36818
36855
|
/**
|
|
36819
36856
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36820
36857
|
* All rights reserved.
|
|
@@ -36967,7 +37004,7 @@ module.exports = templatedArray('shape', {
|
|
|
36967
37004
|
editType: 'arraydraw'
|
|
36968
37005
|
});
|
|
36969
37006
|
|
|
36970
|
-
},{"../../constants/axis_placeable_objects":
|
|
37007
|
+
},{"../../constants/axis_placeable_objects":208,"../../lib/extend":227,"../../plot_api/plot_template":268,"../../traces/scatter/attributes":447,"../annotations/attributes":90,"../drawing/attributes":126}],183:[function(_dereq_,module,exports){
|
|
36971
37008
|
/**
|
|
36972
37009
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36973
37010
|
* All rights reserved.
|
|
@@ -37087,7 +37124,7 @@ function shapeBounds(ax, v0, v1, path, paramsToUse) {
|
|
|
37087
37124
|
if(max >= min) return [min, max];
|
|
37088
37125
|
}
|
|
37089
37126
|
|
|
37090
|
-
},{"../../lib":
|
|
37127
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"./constants":184,"./helpers":193}],184:[function(_dereq_,module,exports){
|
|
37091
37128
|
/**
|
|
37092
37129
|
* Copyright 2012-2020, Plotly, Inc.
|
|
37093
37130
|
* All rights reserved.
|
|
@@ -37151,7 +37188,7 @@ module.exports = {
|
|
|
37151
37188
|
}
|
|
37152
37189
|
};
|
|
37153
37190
|
|
|
37154
|
-
},{}],
|
|
37191
|
+
},{}],185:[function(_dereq_,module,exports){
|
|
37155
37192
|
/**
|
|
37156
37193
|
* Copyright 2012-2020, Plotly, Inc.
|
|
37157
37194
|
* All rights reserved.
|
|
@@ -37282,7 +37319,7 @@ function handleShapeDefaults(shapeIn, shapeOut, fullLayout) {
|
|
|
37282
37319
|
}
|
|
37283
37320
|
}
|
|
37284
37321
|
|
|
37285
|
-
},{"../../lib":
|
|
37322
|
+
},{"../../lib":233,"../../plots/array_container_defaults":274,"../../plots/cartesian/axes":279,"./attributes":182,"./helpers":193}],186:[function(_dereq_,module,exports){
|
|
37286
37323
|
/**
|
|
37287
37324
|
* Copyright 2012-2020, Plotly, Inc.
|
|
37288
37325
|
* All rights reserved.
|
|
@@ -38056,7 +38093,7 @@ function eraseActiveShape(gd) {
|
|
|
38056
38093
|
}
|
|
38057
38094
|
}
|
|
38058
38095
|
|
|
38059
|
-
},{"../../lib":
|
|
38096
|
+
},{"../../lib":233,"../../lib/setcursor":253,"../../plot_api/plot_template":268,"../../plots/cartesian/axes":279,"../../plots/cartesian/handle_outline":289,"../../registry":326,"../color":105,"../dragelement":124,"../drawing":127,"./constants":184,"./draw_newshape/display_outlines":190,"./draw_newshape/helpers":191,"./helpers":193}],187:[function(_dereq_,module,exports){
|
|
38060
38097
|
/**
|
|
38061
38098
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38062
38099
|
* All rights reserved.
|
|
@@ -38159,7 +38196,7 @@ module.exports = {
|
|
|
38159
38196
|
}
|
|
38160
38197
|
};
|
|
38161
38198
|
|
|
38162
|
-
},{"../../../lib/extend":
|
|
38199
|
+
},{"../../../lib/extend":227,"../../drawing/attributes":126}],188:[function(_dereq_,module,exports){
|
|
38163
38200
|
/**
|
|
38164
38201
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38165
38202
|
* All rights reserved.
|
|
@@ -38183,7 +38220,7 @@ module.exports = {
|
|
|
38183
38220
|
SQRT2: Math.sqrt(2)
|
|
38184
38221
|
};
|
|
38185
38222
|
|
|
38186
|
-
},{}],
|
|
38223
|
+
},{}],189:[function(_dereq_,module,exports){
|
|
38187
38224
|
/**
|
|
38188
38225
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38189
38226
|
* All rights reserved.
|
|
@@ -38215,7 +38252,7 @@ module.exports = function supplyDrawNewShapeDefaults(layoutIn, layoutOut, coerce
|
|
|
38215
38252
|
coerce('activeshape.opacity');
|
|
38216
38253
|
};
|
|
38217
38254
|
|
|
38218
|
-
},{"../../color":
|
|
38255
|
+
},{"../../color":105}],190:[function(_dereq_,module,exports){
|
|
38219
38256
|
/**
|
|
38220
38257
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38221
38258
|
* All rights reserved.
|
|
@@ -38510,7 +38547,7 @@ function recordPositions(polygonsOut, polygonsIn) {
|
|
|
38510
38547
|
return polygonsOut;
|
|
38511
38548
|
}
|
|
38512
38549
|
|
|
38513
|
-
},{"../../../plots/cartesian/handle_outline":
|
|
38550
|
+
},{"../../../plots/cartesian/handle_outline":289,"../../../registry":326,"../../dragelement":124,"../../dragelement/helpers":123,"./constants":188,"./helpers":191,"./newshapes":192}],191:[function(_dereq_,module,exports){
|
|
38514
38551
|
/**
|
|
38515
38552
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38516
38553
|
* All rights reserved.
|
|
@@ -38848,7 +38885,7 @@ exports.ellipseOver = function(pos) {
|
|
|
38848
38885
|
};
|
|
38849
38886
|
};
|
|
38850
38887
|
|
|
38851
|
-
},{"../../../plots/cartesian/helpers":
|
|
38888
|
+
},{"../../../plots/cartesian/helpers":290,"./constants":188,"parse-svg-path":77}],192:[function(_dereq_,module,exports){
|
|
38852
38889
|
/**
|
|
38853
38890
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38854
38891
|
* All rights reserved.
|
|
@@ -39107,7 +39144,7 @@ function fixDatesForPaths(polygons, xaxis, yaxis) {
|
|
|
39107
39144
|
return polygons;
|
|
39108
39145
|
}
|
|
39109
39146
|
|
|
39110
|
-
},{"../../../plots/cartesian/handle_outline":
|
|
39147
|
+
},{"../../../plots/cartesian/handle_outline":289,"../../../plots/cartesian/helpers":290,"../../dragelement/helpers":123,"./constants":188,"./helpers":191}],193:[function(_dereq_,module,exports){
|
|
39111
39148
|
/**
|
|
39112
39149
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39113
39150
|
* All rights reserved.
|
|
@@ -39265,7 +39302,7 @@ exports.makeOptionsAndPlotinfo = function(gd, index) {
|
|
|
39265
39302
|
};
|
|
39266
39303
|
};
|
|
39267
39304
|
|
|
39268
|
-
},{"../../lib":
|
|
39305
|
+
},{"../../lib":233,"./constants":184}],194:[function(_dereq_,module,exports){
|
|
39269
39306
|
/**
|
|
39270
39307
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39271
39308
|
* All rights reserved.
|
|
@@ -39293,7 +39330,7 @@ module.exports = {
|
|
|
39293
39330
|
drawOne: drawModule.drawOne
|
|
39294
39331
|
};
|
|
39295
39332
|
|
|
39296
|
-
},{"../../plots/cartesian/include_components":
|
|
39333
|
+
},{"../../plots/cartesian/include_components":291,"./attributes":182,"./calc_autorange":183,"./defaults":185,"./draw":186,"./draw_newshape/defaults":189}],195:[function(_dereq_,module,exports){
|
|
39297
39334
|
/**
|
|
39298
39335
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39299
39336
|
* All rights reserved.
|
|
@@ -39536,7 +39573,7 @@ module.exports = overrideAll(templatedArray('slider', {
|
|
|
39536
39573
|
}
|
|
39537
39574
|
}), 'arraydraw', 'from-root');
|
|
39538
39575
|
|
|
39539
|
-
},{"../../lib/extend":
|
|
39576
|
+
},{"../../lib/extend":227,"../../plot_api/edit_types":261,"../../plot_api/plot_template":268,"../../plots/animation_attributes":273,"../../plots/font_attributes":307,"../../plots/pad_attributes":312,"./constants":196}],196:[function(_dereq_,module,exports){
|
|
39540
39577
|
/**
|
|
39541
39578
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39542
39579
|
* All rights reserved.
|
|
@@ -39630,7 +39667,7 @@ module.exports = {
|
|
|
39630
39667
|
currentValueInset: 0,
|
|
39631
39668
|
};
|
|
39632
39669
|
|
|
39633
|
-
},{}],
|
|
39670
|
+
},{}],197:[function(_dereq_,module,exports){
|
|
39634
39671
|
/**
|
|
39635
39672
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39636
39673
|
* All rights reserved.
|
|
@@ -39745,7 +39782,7 @@ function stepDefaults(valueIn, valueOut) {
|
|
|
39745
39782
|
}
|
|
39746
39783
|
}
|
|
39747
39784
|
|
|
39748
|
-
},{"../../lib":
|
|
39785
|
+
},{"../../lib":233,"../../plots/array_container_defaults":274,"./attributes":195,"./constants":196}],198:[function(_dereq_,module,exports){
|
|
39749
39786
|
/**
|
|
39750
39787
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39751
39788
|
* All rights reserved.
|
|
@@ -40319,7 +40356,7 @@ function setGripPosition(sliderGroup, sliderOpts, doTransition) {
|
|
|
40319
40356
|
.ease(sliderOpts.transition.easing);
|
|
40320
40357
|
}
|
|
40321
40358
|
|
|
40322
|
-
// Drawing.setTranslate doesn't work here
|
|
40359
|
+
// Drawing.setTranslate doesn't work here because of the transition duck-typing.
|
|
40323
40360
|
// It's also not necessary because there are no other transitions to preserve.
|
|
40324
40361
|
el.attr('transform', strTranslate(x - constants.gripWidth * 0.5, sliderOpts._dims.currentValueTotalHeight));
|
|
40325
40362
|
}
|
|
@@ -40376,7 +40413,7 @@ function drawRail(sliderGroup, sliderOpts) {
|
|
|
40376
40413
|
);
|
|
40377
40414
|
}
|
|
40378
40415
|
|
|
40379
|
-
},{"../../constants/alignment":
|
|
40416
|
+
},{"../../constants/alignment":207,"../../lib":233,"../../lib/svg_text_utils":255,"../../plot_api/plot_template":268,"../../plots/plots":313,"../color":105,"../drawing":127,"./constants":196,"d3":21}],199:[function(_dereq_,module,exports){
|
|
40380
40417
|
/**
|
|
40381
40418
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40382
40419
|
* All rights reserved.
|
|
@@ -40399,7 +40436,7 @@ module.exports = {
|
|
|
40399
40436
|
draw: _dereq_('./draw')
|
|
40400
40437
|
};
|
|
40401
40438
|
|
|
40402
|
-
},{"./attributes":
|
|
40439
|
+
},{"./attributes":195,"./constants":196,"./defaults":197,"./draw":198}],200:[function(_dereq_,module,exports){
|
|
40403
40440
|
/**
|
|
40404
40441
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40405
40442
|
* All rights reserved.
|
|
@@ -40667,7 +40704,7 @@ module.exports = {
|
|
|
40667
40704
|
draw: draw
|
|
40668
40705
|
};
|
|
40669
40706
|
|
|
40670
|
-
},{"../../constants/alignment":
|
|
40707
|
+
},{"../../constants/alignment":207,"../../constants/interactions":211,"../../lib":233,"../../lib/svg_text_utils":255,"../../plots/plots":313,"../../registry":326,"../color":105,"../drawing":127,"d3":21,"fast-isnumeric":23}],201:[function(_dereq_,module,exports){
|
|
40671
40708
|
/**
|
|
40672
40709
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40673
40710
|
* All rights reserved.
|
|
@@ -40836,7 +40873,7 @@ module.exports = overrideAll(templatedArray('updatemenu', {
|
|
|
40836
40873
|
}
|
|
40837
40874
|
}), 'arraydraw', 'from-root');
|
|
40838
40875
|
|
|
40839
|
-
},{"../../lib/extend":
|
|
40876
|
+
},{"../../lib/extend":227,"../../plot_api/edit_types":261,"../../plot_api/plot_template":268,"../../plots/font_attributes":307,"../../plots/pad_attributes":312,"../color/attributes":104}],202:[function(_dereq_,module,exports){
|
|
40840
40877
|
/**
|
|
40841
40878
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40842
40879
|
* All rights reserved.
|
|
@@ -40917,7 +40954,7 @@ module.exports = {
|
|
|
40917
40954
|
}
|
|
40918
40955
|
};
|
|
40919
40956
|
|
|
40920
|
-
},{}],
|
|
40957
|
+
},{}],203:[function(_dereq_,module,exports){
|
|
40921
40958
|
/**
|
|
40922
40959
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40923
40960
|
* All rights reserved.
|
|
@@ -41000,7 +41037,7 @@ function buttonDefaults(buttonIn, buttonOut) {
|
|
|
41000
41037
|
}
|
|
41001
41038
|
}
|
|
41002
41039
|
|
|
41003
|
-
},{"../../lib":
|
|
41040
|
+
},{"../../lib":233,"../../plots/array_container_defaults":274,"./attributes":201,"./constants":202}],204:[function(_dereq_,module,exports){
|
|
41004
41041
|
/**
|
|
41005
41042
|
* Copyright 2012-2020, Plotly, Inc.
|
|
41006
41043
|
* All rights reserved.
|
|
@@ -41651,9 +41688,9 @@ function removeAllButtons(gButton, newMenuIndexAttr) {
|
|
|
41651
41688
|
.selectAll('g.' + constants.dropdownButtonClassName).remove();
|
|
41652
41689
|
}
|
|
41653
41690
|
|
|
41654
|
-
},{"../../constants/alignment":
|
|
41655
|
-
arguments[4][
|
|
41656
|
-
},{"./attributes":
|
|
41691
|
+
},{"../../constants/alignment":207,"../../lib":233,"../../lib/svg_text_utils":255,"../../plot_api/plot_template":268,"../../plots/plots":313,"../color":105,"../drawing":127,"./constants":202,"./scrollbox":206,"d3":21}],205:[function(_dereq_,module,exports){
|
|
41692
|
+
arguments[4][199][0].apply(exports,arguments)
|
|
41693
|
+
},{"./attributes":201,"./constants":202,"./defaults":203,"./draw":204,"dup":199}],206:[function(_dereq_,module,exports){
|
|
41657
41694
|
/**
|
|
41658
41695
|
* Copyright 2012-2020, Plotly, Inc.
|
|
41659
41696
|
* All rights reserved.
|
|
@@ -42118,7 +42155,7 @@ ScrollBox.prototype.setTranslate = function setTranslate(translateX, translateY)
|
|
|
42118
42155
|
}
|
|
42119
42156
|
};
|
|
42120
42157
|
|
|
42121
|
-
},{"../../lib":
|
|
42158
|
+
},{"../../lib":233,"../color":105,"../drawing":127,"d3":21}],207:[function(_dereq_,module,exports){
|
|
42122
42159
|
/**
|
|
42123
42160
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42124
42161
|
* All rights reserved.
|
|
@@ -42183,7 +42220,7 @@ module.exports = {
|
|
|
42183
42220
|
}
|
|
42184
42221
|
};
|
|
42185
42222
|
|
|
42186
|
-
},{}],
|
|
42223
|
+
},{}],208:[function(_dereq_,module,exports){
|
|
42187
42224
|
/**
|
|
42188
42225
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42189
42226
|
* All rights reserved.
|
|
@@ -42215,7 +42252,7 @@ module.exports = {
|
|
|
42215
42252
|
}
|
|
42216
42253
|
};
|
|
42217
42254
|
|
|
42218
|
-
},{}],
|
|
42255
|
+
},{}],209:[function(_dereq_,module,exports){
|
|
42219
42256
|
/**
|
|
42220
42257
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42221
42258
|
* All rights reserved.
|
|
@@ -42231,7 +42268,7 @@ module.exports = {
|
|
|
42231
42268
|
DATE_FORMAT_LINK: 'https://github.com/d3/d3-time-format#locale_format'
|
|
42232
42269
|
};
|
|
42233
42270
|
|
|
42234
|
-
},{}],
|
|
42271
|
+
},{}],210:[function(_dereq_,module,exports){
|
|
42235
42272
|
/**
|
|
42236
42273
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42237
42274
|
* All rights reserved.
|
|
@@ -42269,7 +42306,7 @@ module.exports = {
|
|
|
42269
42306
|
}
|
|
42270
42307
|
};
|
|
42271
42308
|
|
|
42272
|
-
},{}],
|
|
42309
|
+
},{}],211:[function(_dereq_,module,exports){
|
|
42273
42310
|
/**
|
|
42274
42311
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42275
42312
|
* All rights reserved.
|
|
@@ -42292,7 +42329,7 @@ module.exports = {
|
|
|
42292
42329
|
DESELECTDIM: 0.2
|
|
42293
42330
|
};
|
|
42294
42331
|
|
|
42295
|
-
},{}],
|
|
42332
|
+
},{}],212:[function(_dereq_,module,exports){
|
|
42296
42333
|
/**
|
|
42297
42334
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42298
42335
|
* All rights reserved.
|
|
@@ -42365,7 +42402,7 @@ module.exports = {
|
|
|
42365
42402
|
MINUS_SIGN: '\u2212'
|
|
42366
42403
|
};
|
|
42367
42404
|
|
|
42368
|
-
},{}],
|
|
42405
|
+
},{}],213:[function(_dereq_,module,exports){
|
|
42369
42406
|
/**
|
|
42370
42407
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42371
42408
|
* All rights reserved.
|
|
@@ -42389,7 +42426,7 @@ exports.svgAttrs = {
|
|
|
42389
42426
|
'xmlns:xlink': exports.xlink
|
|
42390
42427
|
};
|
|
42391
42428
|
|
|
42392
|
-
},{}],
|
|
42429
|
+
},{}],214:[function(_dereq_,module,exports){
|
|
42393
42430
|
/**
|
|
42394
42431
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42395
42432
|
* All rights reserved.
|
|
@@ -42475,7 +42512,7 @@ exports.Queue = _dereq_('./lib/queue');
|
|
|
42475
42512
|
// export d3 used in the bundle
|
|
42476
42513
|
exports.d3 = _dereq_('d3');
|
|
42477
42514
|
|
|
42478
|
-
},{"../build/plotcss":1,"./components/annotations":
|
|
42515
|
+
},{"../build/plotcss":1,"./components/annotations":98,"./components/annotations3d":103,"./components/colorbar":111,"./components/colorscale":117,"./components/errorbars":133,"./components/fx":145,"./components/grid":149,"./components/images":154,"./components/legend":162,"./components/rangeselector":173,"./components/rangeslider":180,"./components/shapes":194,"./components/sliders":199,"./components/updatemenus":205,"./fonts/mathjax_config":215,"./fonts/ploticon":216,"./lib/queue":248,"./locale-en":259,"./locale-en-us":258,"./plot_api":263,"./plot_api/plot_schema":267,"./plots/plots":313,"./registry":326,"./snapshot":331,"./traces/scatter":459,"./version":494,"d3":21,"es6-promise":22}],215:[function(_dereq_,module,exports){
|
|
42479
42516
|
/**
|
|
42480
42517
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42481
42518
|
* All rights reserved.
|
|
@@ -42506,7 +42543,7 @@ module.exports = function() {
|
|
|
42506
42543
|
}
|
|
42507
42544
|
};
|
|
42508
42545
|
|
|
42509
|
-
},{}],
|
|
42546
|
+
},{}],216:[function(_dereq_,module,exports){
|
|
42510
42547
|
/**
|
|
42511
42548
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42512
42549
|
* All rights reserved.
|
|
@@ -42686,7 +42723,7 @@ module.exports = {
|
|
|
42686
42723
|
}
|
|
42687
42724
|
};
|
|
42688
42725
|
|
|
42689
|
-
},{}],
|
|
42726
|
+
},{}],217:[function(_dereq_,module,exports){
|
|
42690
42727
|
/**
|
|
42691
42728
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42692
42729
|
* All rights reserved.
|
|
@@ -42750,7 +42787,7 @@ exports.isBottomAnchor = function isBottomAnchor(opts) {
|
|
|
42750
42787
|
);
|
|
42751
42788
|
};
|
|
42752
42789
|
|
|
42753
|
-
},{}],
|
|
42790
|
+
},{}],218:[function(_dereq_,module,exports){
|
|
42754
42791
|
/**
|
|
42755
42792
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42756
42793
|
* All rights reserved.
|
|
@@ -42991,7 +43028,7 @@ module.exports = {
|
|
|
42991
43028
|
pathAnnulus: pathAnnulus
|
|
42992
43029
|
};
|
|
42993
43030
|
|
|
42994
|
-
},{"./mod":
|
|
43031
|
+
},{"./mod":240}],219:[function(_dereq_,module,exports){
|
|
42995
43032
|
/**
|
|
42996
43033
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42997
43034
|
* All rights reserved.
|
|
@@ -43148,7 +43185,7 @@ function _rowLength(z, fn, len0) {
|
|
|
43148
43185
|
return 0;
|
|
43149
43186
|
}
|
|
43150
43187
|
|
|
43151
|
-
},{}],
|
|
43188
|
+
},{}],220:[function(_dereq_,module,exports){
|
|
43152
43189
|
/**
|
|
43153
43190
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43154
43191
|
* All rights reserved.
|
|
@@ -43181,7 +43218,7 @@ module.exports = function cleanNumber(v) {
|
|
|
43181
43218
|
return BADNUM;
|
|
43182
43219
|
};
|
|
43183
43220
|
|
|
43184
|
-
},{"../constants/numerical":
|
|
43221
|
+
},{"../constants/numerical":212,"fast-isnumeric":23}],221:[function(_dereq_,module,exports){
|
|
43185
43222
|
/**
|
|
43186
43223
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43187
43224
|
* All rights reserved.
|
|
@@ -43209,7 +43246,7 @@ module.exports = function clearGlCanvases(gd) {
|
|
|
43209
43246
|
}
|
|
43210
43247
|
};
|
|
43211
43248
|
|
|
43212
|
-
},{}],
|
|
43249
|
+
},{}],222:[function(_dereq_,module,exports){
|
|
43213
43250
|
/**
|
|
43214
43251
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43215
43252
|
* All rights reserved.
|
|
@@ -43232,7 +43269,7 @@ module.exports = function clearResponsive(gd) {
|
|
|
43232
43269
|
}
|
|
43233
43270
|
};
|
|
43234
43271
|
|
|
43235
|
-
},{}],
|
|
43272
|
+
},{}],223:[function(_dereq_,module,exports){
|
|
43236
43273
|
/**
|
|
43237
43274
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43238
43275
|
* All rights reserved.
|
|
@@ -43696,7 +43733,7 @@ function validate(value, opts) {
|
|
|
43696
43733
|
}
|
|
43697
43734
|
exports.validate = validate;
|
|
43698
43735
|
|
|
43699
|
-
},{"../components/colorscale/scales":
|
|
43736
|
+
},{"../components/colorscale/scales":120,"../constants/interactions":211,"../plots/attributes":275,"./array":219,"./mod":240,"./nested_property":241,"./regex":249,"fast-isnumeric":23,"tinycolor2":88}],224:[function(_dereq_,module,exports){
|
|
43700
43737
|
/**
|
|
43701
43738
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43702
43739
|
* All rights reserved.
|
|
@@ -44297,7 +44334,7 @@ exports.findExactDates = function(data, calendar) {
|
|
|
44297
44334
|
};
|
|
44298
44335
|
};
|
|
44299
44336
|
|
|
44300
|
-
},{"../constants/numerical":
|
|
44337
|
+
},{"../constants/numerical":212,"../registry":326,"./loggers":237,"./mod":240,"d3-time-format":19,"fast-isnumeric":23}],225:[function(_dereq_,module,exports){
|
|
44301
44338
|
/**
|
|
44302
44339
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44303
44340
|
* All rights reserved.
|
|
@@ -44475,7 +44512,7 @@ module.exports = {
|
|
|
44475
44512
|
equalDomRects: equalDomRects
|
|
44476
44513
|
};
|
|
44477
44514
|
|
|
44478
|
-
},{"./loggers":
|
|
44515
|
+
},{"./loggers":237,"./matrix":239,"d3":21,"gl-mat4":39}],226:[function(_dereq_,module,exports){
|
|
44479
44516
|
/**
|
|
44480
44517
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44481
44518
|
* All rights reserved.
|
|
@@ -44648,7 +44685,7 @@ var Events = {
|
|
|
44648
44685
|
|
|
44649
44686
|
module.exports = Events;
|
|
44650
44687
|
|
|
44651
|
-
},{"events":17}],
|
|
44688
|
+
},{"events":17}],227:[function(_dereq_,module,exports){
|
|
44652
44689
|
/**
|
|
44653
44690
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44654
44691
|
* All rights reserved.
|
|
@@ -44762,7 +44799,7 @@ function _extend(inputs, isDeep, keepAllKeys, noArrayCopies) {
|
|
|
44762
44799
|
return target;
|
|
44763
44800
|
}
|
|
44764
44801
|
|
|
44765
|
-
},{"./is_plain_object.js":
|
|
44802
|
+
},{"./is_plain_object.js":234}],228:[function(_dereq_,module,exports){
|
|
44766
44803
|
/**
|
|
44767
44804
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44768
44805
|
* All rights reserved.
|
|
@@ -44813,7 +44850,7 @@ module.exports = function filterUnique(array) {
|
|
|
44813
44850
|
return out;
|
|
44814
44851
|
};
|
|
44815
44852
|
|
|
44816
|
-
},{}],
|
|
44853
|
+
},{}],229:[function(_dereq_,module,exports){
|
|
44817
44854
|
/**
|
|
44818
44855
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44819
44856
|
* All rights reserved.
|
|
@@ -44861,7 +44898,7 @@ function isCalcData(cont) {
|
|
|
44861
44898
|
);
|
|
44862
44899
|
}
|
|
44863
44900
|
|
|
44864
|
-
},{}],
|
|
44901
|
+
},{}],230:[function(_dereq_,module,exports){
|
|
44865
44902
|
/**
|
|
44866
44903
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44867
44904
|
* All rights reserved.
|
|
@@ -45105,7 +45142,7 @@ exports.findPointOnPath = function findPointOnPath(path, val, coord, opts) {
|
|
|
45105
45142
|
return pt;
|
|
45106
45143
|
};
|
|
45107
45144
|
|
|
45108
|
-
},{"./mod":
|
|
45145
|
+
},{"./mod":240}],231:[function(_dereq_,module,exports){
|
|
45109
45146
|
/**
|
|
45110
45147
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45111
45148
|
* All rights reserved.
|
|
@@ -45121,7 +45158,7 @@ exports.findPointOnPath = function findPointOnPath(path, val, coord, opts) {
|
|
|
45121
45158
|
|
|
45122
45159
|
module.exports = function identity(d) { return d; };
|
|
45123
45160
|
|
|
45124
|
-
},{}],
|
|
45161
|
+
},{}],232:[function(_dereq_,module,exports){
|
|
45125
45162
|
/**
|
|
45126
45163
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45127
45164
|
* All rights reserved.
|
|
@@ -45163,7 +45200,7 @@ module.exports = function incrementNumeric(x, delta) {
|
|
|
45163
45200
|
return newX;
|
|
45164
45201
|
};
|
|
45165
45202
|
|
|
45166
|
-
},{}],
|
|
45203
|
+
},{}],233:[function(_dereq_,module,exports){
|
|
45167
45204
|
/**
|
|
45168
45205
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45169
45206
|
* All rights reserved.
|
|
@@ -45320,6 +45357,7 @@ lib.getElementAndAncestors = domModule.getElementAndAncestors;
|
|
|
45320
45357
|
lib.equalDomRects = domModule.equalDomRects;
|
|
45321
45358
|
|
|
45322
45359
|
lib.clearResponsive = _dereq_('./clear_responsive');
|
|
45360
|
+
lib.preserveDrawingBuffer = _dereq_('./preserve_drawing_buffer');
|
|
45323
45361
|
|
|
45324
45362
|
lib.makeTraceGroups = _dereq_('./make_trace_groups');
|
|
45325
45363
|
|
|
@@ -46030,7 +46068,7 @@ lib.objectFromPath = function(path, value) {
|
|
|
46030
46068
|
* lib.expandObjectPaths({'foo[1].bar': 10, 'foo[0].bar': 20});
|
|
46031
46069
|
* => { foo: [{bar: 10}, {bar: 20}] }
|
|
46032
46070
|
*
|
|
46033
|
-
* It does NOT, however, merge
|
|
46071
|
+
* It does NOT, however, merge multiple multiply-nested arrays::
|
|
46034
46072
|
*
|
|
46035
46073
|
* lib.expandObjectPaths({'marker[1].range[1]': 5, 'marker[1].range[0]': 4})
|
|
46036
46074
|
* => { marker: [null, {range: 4}] }
|
|
@@ -46445,7 +46483,7 @@ lib.join2 = function(arr, mainSeparator, lastSeparator) {
|
|
|
46445
46483
|
return arr.join(mainSeparator);
|
|
46446
46484
|
};
|
|
46447
46485
|
|
|
46448
|
-
},{"../constants/numerical":
|
|
46486
|
+
},{"../constants/numerical":212,"./anchor_utils":217,"./angles":218,"./array":219,"./clean_number":220,"./clear_responsive":222,"./coerce":223,"./dates":224,"./dom":225,"./extend":227,"./filter_unique":228,"./filter_visible":229,"./geometry2d":230,"./identity":231,"./increment":232,"./is_plain_object":234,"./keyed_container":235,"./localize":236,"./loggers":237,"./make_trace_groups":238,"./matrix":239,"./mod":240,"./nested_property":241,"./noop":242,"./notifier":243,"./preserve_drawing_buffer":246,"./push_unique":247,"./regex":249,"./relative_attr":250,"./relink_private":251,"./search":252,"./stats":254,"./throttle":256,"./to_log_range":257,"d3":21,"d3-time-format":19,"fast-isnumeric":23}],234:[function(_dereq_,module,exports){
|
|
46449
46487
|
/**
|
|
46450
46488
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46451
46489
|
* All rights reserved.
|
|
@@ -46473,7 +46511,7 @@ module.exports = function isPlainObject(obj) {
|
|
|
46473
46511
|
);
|
|
46474
46512
|
};
|
|
46475
46513
|
|
|
46476
|
-
},{}],
|
|
46514
|
+
},{}],235:[function(_dereq_,module,exports){
|
|
46477
46515
|
/**
|
|
46478
46516
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46479
46517
|
* All rights reserved.
|
|
@@ -46666,7 +46704,7 @@ module.exports = function keyedContainer(baseObj, path, keyName, valueName) {
|
|
|
46666
46704
|
return obj;
|
|
46667
46705
|
};
|
|
46668
46706
|
|
|
46669
|
-
},{"./nested_property":
|
|
46707
|
+
},{"./nested_property":241}],236:[function(_dereq_,module,exports){
|
|
46670
46708
|
/**
|
|
46671
46709
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46672
46710
|
* All rights reserved.
|
|
@@ -46722,7 +46760,7 @@ module.exports = function localize(gd, s) {
|
|
|
46722
46760
|
return s;
|
|
46723
46761
|
};
|
|
46724
46762
|
|
|
46725
|
-
},{"../registry":
|
|
46763
|
+
},{"../registry":326}],237:[function(_dereq_,module,exports){
|
|
46726
46764
|
/**
|
|
46727
46765
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46728
46766
|
* All rights reserved.
|
|
@@ -46832,7 +46870,7 @@ function apply(f, args) {
|
|
|
46832
46870
|
}
|
|
46833
46871
|
}
|
|
46834
46872
|
|
|
46835
|
-
},{"../plot_api/plot_config":
|
|
46873
|
+
},{"../plot_api/plot_config":266,"./notifier":243}],238:[function(_dereq_,module,exports){
|
|
46836
46874
|
/**
|
|
46837
46875
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46838
46876
|
* All rights reserved.
|
|
@@ -46875,7 +46913,7 @@ module.exports = function makeTraceGroups(traceLayer, cdModule, cls) {
|
|
|
46875
46913
|
return traces;
|
|
46876
46914
|
};
|
|
46877
46915
|
|
|
46878
|
-
},{"d3":21}],
|
|
46916
|
+
},{"d3":21}],239:[function(_dereq_,module,exports){
|
|
46879
46917
|
/**
|
|
46880
46918
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46881
46919
|
* All rights reserved.
|
|
@@ -47027,7 +47065,7 @@ exports.inverseTransformMatrix = function(m) {
|
|
|
47027
47065
|
];
|
|
47028
47066
|
};
|
|
47029
47067
|
|
|
47030
|
-
},{"gl-mat4":39}],
|
|
47068
|
+
},{"gl-mat4":39}],240:[function(_dereq_,module,exports){
|
|
47031
47069
|
/**
|
|
47032
47070
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47033
47071
|
* All rights reserved.
|
|
@@ -47062,7 +47100,7 @@ module.exports = {
|
|
|
47062
47100
|
modHalf: modHalf
|
|
47063
47101
|
};
|
|
47064
47102
|
|
|
47065
|
-
},{}],
|
|
47103
|
+
},{}],241:[function(_dereq_,module,exports){
|
|
47066
47104
|
/**
|
|
47067
47105
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47068
47106
|
* All rights reserved.
|
|
@@ -47308,7 +47346,7 @@ function badContainer(container, propStr, propParts) {
|
|
|
47308
47346
|
};
|
|
47309
47347
|
}
|
|
47310
47348
|
|
|
47311
|
-
},{"./array":
|
|
47349
|
+
},{"./array":219,"fast-isnumeric":23}],242:[function(_dereq_,module,exports){
|
|
47312
47350
|
/**
|
|
47313
47351
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47314
47352
|
* All rights reserved.
|
|
@@ -47324,7 +47362,7 @@ function badContainer(container, propStr, propParts) {
|
|
|
47324
47362
|
|
|
47325
47363
|
module.exports = function noop() {};
|
|
47326
47364
|
|
|
47327
|
-
},{}],
|
|
47365
|
+
},{}],243:[function(_dereq_,module,exports){
|
|
47328
47366
|
/**
|
|
47329
47367
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47330
47368
|
* All rights reserved.
|
|
@@ -47412,7 +47450,7 @@ module.exports = function(text, displayLength) {
|
|
|
47412
47450
|
});
|
|
47413
47451
|
};
|
|
47414
47452
|
|
|
47415
|
-
},{"d3":21,"fast-isnumeric":23}],
|
|
47453
|
+
},{"d3":21,"fast-isnumeric":23}],244:[function(_dereq_,module,exports){
|
|
47416
47454
|
/**
|
|
47417
47455
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47418
47456
|
* All rights reserved.
|
|
@@ -47460,7 +47498,7 @@ module.exports = function overrideCursor(el3, csr) {
|
|
|
47460
47498
|
}
|
|
47461
47499
|
};
|
|
47462
47500
|
|
|
47463
|
-
},{"./setcursor":
|
|
47501
|
+
},{"./setcursor":253}],245:[function(_dereq_,module,exports){
|
|
47464
47502
|
/**
|
|
47465
47503
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47466
47504
|
* All rights reserved.
|
|
@@ -47712,7 +47750,77 @@ polygon.filter = function filter(pts, tolerance) {
|
|
|
47712
47750
|
};
|
|
47713
47751
|
};
|
|
47714
47752
|
|
|
47715
|
-
},{"../constants/numerical":
|
|
47753
|
+
},{"../constants/numerical":212,"./matrix":239}],246:[function(_dereq_,module,exports){
|
|
47754
|
+
/**
|
|
47755
|
+
* Copyright 2012-2020, Plotly, Inc.
|
|
47756
|
+
* All rights reserved.
|
|
47757
|
+
*
|
|
47758
|
+
* This source code is licensed under the MIT license found in the
|
|
47759
|
+
* LICENSE file in the root directory of this source tree.
|
|
47760
|
+
*/
|
|
47761
|
+
|
|
47762
|
+
'use strict';
|
|
47763
|
+
|
|
47764
|
+
var isNumeric = _dereq_('fast-isnumeric');
|
|
47765
|
+
var isMobileOrTablet = _dereq_('is-mobile');
|
|
47766
|
+
|
|
47767
|
+
module.exports = function preserveDrawingBuffer(opts) {
|
|
47768
|
+
var ua;
|
|
47769
|
+
|
|
47770
|
+
if(opts && opts.hasOwnProperty('userAgent')) {
|
|
47771
|
+
ua = opts.userAgent;
|
|
47772
|
+
} else {
|
|
47773
|
+
ua = getUserAgent();
|
|
47774
|
+
}
|
|
47775
|
+
|
|
47776
|
+
if(typeof ua !== 'string') return true;
|
|
47777
|
+
|
|
47778
|
+
var enable = isMobileOrTablet({
|
|
47779
|
+
ua: { headers: {'user-agent': ua }},
|
|
47780
|
+
tablet: true,
|
|
47781
|
+
featureDetect: false
|
|
47782
|
+
});
|
|
47783
|
+
|
|
47784
|
+
if(!enable) {
|
|
47785
|
+
var allParts = ua.split(' ');
|
|
47786
|
+
for(var i = 1; i < allParts.length; i++) {
|
|
47787
|
+
var part = allParts[i];
|
|
47788
|
+
if(part.indexOf('Safari') !== -1) {
|
|
47789
|
+
// find Safari version
|
|
47790
|
+
for(var k = i - 1; k > -1; k--) {
|
|
47791
|
+
var prevPart = allParts[k];
|
|
47792
|
+
if(prevPart.substr(0, 8) === 'Version/') {
|
|
47793
|
+
var v = prevPart.substr(8).split('.')[0];
|
|
47794
|
+
if(isNumeric(v)) v = +v;
|
|
47795
|
+
if(v >= 13) return true;
|
|
47796
|
+
}
|
|
47797
|
+
}
|
|
47798
|
+
}
|
|
47799
|
+
}
|
|
47800
|
+
}
|
|
47801
|
+
|
|
47802
|
+
return enable;
|
|
47803
|
+
};
|
|
47804
|
+
|
|
47805
|
+
function getUserAgent() {
|
|
47806
|
+
// similar to https://github.com/juliangruber/is-mobile/blob/91ca39ccdd4cfc5edfb5391e2515b923a730fbea/index.js#L14-L17
|
|
47807
|
+
var ua;
|
|
47808
|
+
if(typeof navigator !== 'undefined') {
|
|
47809
|
+
ua = navigator.userAgent;
|
|
47810
|
+
}
|
|
47811
|
+
|
|
47812
|
+
if(
|
|
47813
|
+
ua &&
|
|
47814
|
+
ua.headers &&
|
|
47815
|
+
typeof ua.headers['user-agent'] === 'string'
|
|
47816
|
+
) {
|
|
47817
|
+
ua = ua.headers['user-agent'];
|
|
47818
|
+
}
|
|
47819
|
+
|
|
47820
|
+
return ua;
|
|
47821
|
+
}
|
|
47822
|
+
|
|
47823
|
+
},{"fast-isnumeric":23,"is-mobile":74}],247:[function(_dereq_,module,exports){
|
|
47716
47824
|
/**
|
|
47717
47825
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47718
47826
|
* All rights reserved.
|
|
@@ -47750,7 +47858,7 @@ module.exports = function pushUnique(array, item) {
|
|
|
47750
47858
|
return array;
|
|
47751
47859
|
};
|
|
47752
47860
|
|
|
47753
|
-
},{}],
|
|
47861
|
+
},{}],248:[function(_dereq_,module,exports){
|
|
47754
47862
|
/**
|
|
47755
47863
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47756
47864
|
* All rights reserved.
|
|
@@ -47958,7 +48066,7 @@ queue.plotDo = function(gd, func, args) {
|
|
|
47958
48066
|
|
|
47959
48067
|
module.exports = queue;
|
|
47960
48068
|
|
|
47961
|
-
},{"../lib":
|
|
48069
|
+
},{"../lib":233,"../plot_api/plot_config":266}],249:[function(_dereq_,module,exports){
|
|
47962
48070
|
/**
|
|
47963
48071
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47964
48072
|
* All rights reserved.
|
|
@@ -47988,7 +48096,7 @@ exports.counter = function(head, tail, openEnded, matchBeginning) {
|
|
|
47988
48096
|
return new RegExp(startWithPrefix + head + '([2-9]|[1-9][0-9]+)?' + fullTail);
|
|
47989
48097
|
};
|
|
47990
48098
|
|
|
47991
|
-
},{}],
|
|
48099
|
+
},{}],250:[function(_dereq_,module,exports){
|
|
47992
48100
|
/**
|
|
47993
48101
|
* Copyright 2012-2020, Plotly, Inc.
|
|
47994
48102
|
* All rights reserved.
|
|
@@ -48041,7 +48149,7 @@ module.exports = function(baseAttr, relativeAttr) {
|
|
|
48041
48149
|
return baseAttr + relativeAttr;
|
|
48042
48150
|
};
|
|
48043
48151
|
|
|
48044
|
-
},{}],
|
|
48152
|
+
},{}],251:[function(_dereq_,module,exports){
|
|
48045
48153
|
/**
|
|
48046
48154
|
* Copyright 2012-2020, Plotly, Inc.
|
|
48047
48155
|
* All rights reserved.
|
|
@@ -48098,7 +48206,7 @@ module.exports = function relinkPrivateKeys(toContainer, fromContainer) {
|
|
|
48098
48206
|
}
|
|
48099
48207
|
};
|
|
48100
48208
|
|
|
48101
|
-
},{"./array":
|
|
48209
|
+
},{"./array":219,"./is_plain_object":234}],252:[function(_dereq_,module,exports){
|
|
48102
48210
|
/**
|
|
48103
48211
|
* Copyright 2012-2020, Plotly, Inc.
|
|
48104
48212
|
* All rights reserved.
|
|
@@ -48303,7 +48411,7 @@ exports.findIndexOfMin = function(arr, fn) {
|
|
|
48303
48411
|
return ind;
|
|
48304
48412
|
};
|
|
48305
48413
|
|
|
48306
|
-
},{"../constants/numerical":
|
|
48414
|
+
},{"../constants/numerical":212,"./identity":231,"./loggers":237,"fast-isnumeric":23}],253:[function(_dereq_,module,exports){
|
|
48307
48415
|
/**
|
|
48308
48416
|
* Copyright 2012-2020, Plotly, Inc.
|
|
48309
48417
|
* All rights reserved.
|
|
@@ -48326,7 +48434,7 @@ module.exports = function setCursor(el3, csr) {
|
|
|
48326
48434
|
if(csr) el3.classed('cursor-' + csr, true);
|
|
48327
48435
|
};
|
|
48328
48436
|
|
|
48329
|
-
},{}],
|
|
48437
|
+
},{}],254:[function(_dereq_,module,exports){
|
|
48330
48438
|
/**
|
|
48331
48439
|
* Copyright 2012-2020, Plotly, Inc.
|
|
48332
48440
|
* All rights reserved.
|
|
@@ -48436,7 +48544,7 @@ exports.interp = function(arr, n) {
|
|
|
48436
48544
|
return frac * arr[Math.ceil(n)] + (1 - frac) * arr[Math.floor(n)];
|
|
48437
48545
|
};
|
|
48438
48546
|
|
|
48439
|
-
},{"./array":
|
|
48547
|
+
},{"./array":219,"fast-isnumeric":23}],255:[function(_dereq_,module,exports){
|
|
48440
48548
|
/**
|
|
48441
48549
|
* Copyright 2012-2020, Plotly, Inc.
|
|
48442
48550
|
* All rights reserved.
|
|
@@ -49327,7 +49435,7 @@ exports.makeEditable = function(context, options) {
|
|
|
49327
49435
|
return d3.rebind(context, dispatch, 'on');
|
|
49328
49436
|
};
|
|
49329
49437
|
|
|
49330
|
-
},{"../constants/alignment":
|
|
49438
|
+
},{"../constants/alignment":207,"../constants/xmlns_namespaces":213,"../lib":233,"d3":21}],256:[function(_dereq_,module,exports){
|
|
49331
49439
|
/**
|
|
49332
49440
|
* Copyright 2012-2020, Plotly, Inc.
|
|
49333
49441
|
* All rights reserved.
|
|
@@ -49430,7 +49538,7 @@ function _clearTimeout(cache) {
|
|
|
49430
49538
|
}
|
|
49431
49539
|
}
|
|
49432
49540
|
|
|
49433
|
-
},{}],
|
|
49541
|
+
},{}],257:[function(_dereq_,module,exports){
|
|
49434
49542
|
/**
|
|
49435
49543
|
* Copyright 2012-2020, Plotly, Inc.
|
|
49436
49544
|
* All rights reserved.
|
|
@@ -49458,7 +49566,7 @@ module.exports = function toLogRange(val, range) {
|
|
|
49458
49566
|
return newVal;
|
|
49459
49567
|
};
|
|
49460
49568
|
|
|
49461
|
-
},{"fast-isnumeric":23}],
|
|
49569
|
+
},{"fast-isnumeric":23}],258:[function(_dereq_,module,exports){
|
|
49462
49570
|
/**
|
|
49463
49571
|
* Copyright 2012-2020, Plotly, Inc.
|
|
49464
49572
|
* All rights reserved.
|
|
@@ -49480,7 +49588,7 @@ module.exports = {
|
|
|
49480
49588
|
}
|
|
49481
49589
|
};
|
|
49482
49590
|
|
|
49483
|
-
},{}],
|
|
49591
|
+
},{}],259:[function(_dereq_,module,exports){
|
|
49484
49592
|
/**
|
|
49485
49593
|
* Copyright 2012-2020, Plotly, Inc.
|
|
49486
49594
|
* All rights reserved.
|
|
@@ -49523,7 +49631,7 @@ module.exports = {
|
|
|
49523
49631
|
}
|
|
49524
49632
|
};
|
|
49525
49633
|
|
|
49526
|
-
},{}],
|
|
49634
|
+
},{}],260:[function(_dereq_,module,exports){
|
|
49527
49635
|
/**
|
|
49528
49636
|
* Copyright 2012-2020, Plotly, Inc.
|
|
49529
49637
|
* All rights reserved.
|
|
@@ -49581,7 +49689,7 @@ module.exports = function containerArrayMatch(astr) {
|
|
|
49581
49689
|
return {array: arrayStr, index: Number(match[1]), property: match[3] || ''};
|
|
49582
49690
|
};
|
|
49583
49691
|
|
|
49584
|
-
},{"../registry":
|
|
49692
|
+
},{"../registry":326}],261:[function(_dereq_,module,exports){
|
|
49585
49693
|
/**
|
|
49586
49694
|
* Copyright 2012-2020, Plotly, Inc.
|
|
49587
49695
|
* All rights reserved.
|
|
@@ -49706,7 +49814,7 @@ function overrideOne(attr, editTypeOverride, overrideContainers, key) {
|
|
|
49706
49814
|
}
|
|
49707
49815
|
}
|
|
49708
49816
|
|
|
49709
|
-
},{"../lib":
|
|
49817
|
+
},{"../lib":233}],262:[function(_dereq_,module,exports){
|
|
49710
49818
|
/**
|
|
49711
49819
|
* Copyright 2012-2020, Plotly, Inc.
|
|
49712
49820
|
* All rights reserved.
|
|
@@ -50408,7 +50516,7 @@ exports.clearAxisTypes = function(gd, traces, layoutUpdate) {
|
|
|
50408
50516
|
}
|
|
50409
50517
|
};
|
|
50410
50518
|
|
|
50411
|
-
},{"../components/color":
|
|
50519
|
+
},{"../components/color":105,"../lib":233,"../plots/cartesian/axis_ids":282,"../plots/plots":313,"../registry":326,"fast-isnumeric":23,"gl-mat4/fromQuat":29}],263:[function(_dereq_,module,exports){
|
|
50412
50520
|
/**
|
|
50413
50521
|
* Copyright 2012-2020, Plotly, Inc.
|
|
50414
50522
|
* All rights reserved.
|
|
@@ -50451,7 +50559,7 @@ var templateApi = _dereq_('./template_api');
|
|
|
50451
50559
|
exports.makeTemplate = templateApi.makeTemplate;
|
|
50452
50560
|
exports.validateTemplate = templateApi.validateTemplate;
|
|
50453
50561
|
|
|
50454
|
-
},{"../snapshot/download":
|
|
50562
|
+
},{"../snapshot/download":328,"./plot_api":265,"./template_api":270,"./to_image":271,"./validate":272}],264:[function(_dereq_,module,exports){
|
|
50455
50563
|
/**
|
|
50456
50564
|
* Copyright 2012-2020, Plotly, Inc.
|
|
50457
50565
|
* All rights reserved.
|
|
@@ -50664,7 +50772,7 @@ exports.applyContainerArrayChanges = function applyContainerArrayChanges(gd, np,
|
|
|
50664
50772
|
return true;
|
|
50665
50773
|
};
|
|
50666
50774
|
|
|
50667
|
-
},{"../lib/is_plain_object":
|
|
50775
|
+
},{"../lib/is_plain_object":234,"../lib/loggers":237,"../lib/noop":242,"../lib/search":252,"../registry":326,"./container_array_match":260}],265:[function(_dereq_,module,exports){
|
|
50668
50776
|
/**
|
|
50669
50777
|
* Copyright 2012-2020, Plotly, Inc.
|
|
50670
50778
|
* All rights reserved.
|
|
@@ -52615,7 +52723,9 @@ function axRangeSupplyDefaultsByPass(gd, flags, specs) {
|
|
|
52615
52723
|
var axIn = gd.layout[axName];
|
|
52616
52724
|
var axOut = fullLayout[axName];
|
|
52617
52725
|
axOut.autorange = axIn.autorange;
|
|
52618
|
-
|
|
52726
|
+
if(axIn.range) {
|
|
52727
|
+
axOut.range = axIn.range.slice();
|
|
52728
|
+
}
|
|
52619
52729
|
axOut.cleanRange();
|
|
52620
52730
|
|
|
52621
52731
|
if(axOut._matchGroup) {
|
|
@@ -53402,16 +53512,6 @@ function react(gd, data, layout, config) {
|
|
|
53402
53512
|
|
|
53403
53513
|
applyUIRevisions(gd.data, gd.layout, oldFullData, oldFullLayout);
|
|
53404
53514
|
|
|
53405
|
-
var allNames = Object.getOwnPropertyNames(oldFullLayout);
|
|
53406
|
-
for(var q = 0; q < allNames.length; q++) {
|
|
53407
|
-
var name = allNames[q];
|
|
53408
|
-
var start = name.substring(0, 5);
|
|
53409
|
-
if(start === 'xaxis' || start === 'yaxis') {
|
|
53410
|
-
var emptyCategories = oldFullLayout[name]._emptyCategories;
|
|
53411
|
-
if(emptyCategories) emptyCategories();
|
|
53412
|
-
}
|
|
53413
|
-
}
|
|
53414
|
-
|
|
53415
53515
|
// "true" skips updating calcdata and remapping arrays from calcTransforms,
|
|
53416
53516
|
// which supplyDefaults usually does at the end, but we may need to NOT do
|
|
53417
53517
|
// if the diff (which we haven't determined yet) says we'll recalc
|
|
@@ -53437,10 +53537,22 @@ function react(gd, data, layout, config) {
|
|
|
53437
53537
|
|
|
53438
53538
|
if(updateAutosize(gd)) relayoutFlags.layoutReplot = true;
|
|
53439
53539
|
|
|
53440
|
-
// clear calcdata if required
|
|
53441
|
-
if(restyleFlags.calc || relayoutFlags.calc)
|
|
53540
|
+
// clear calcdata and empty categories if required
|
|
53541
|
+
if(restyleFlags.calc || relayoutFlags.calc) {
|
|
53542
|
+
gd.calcdata = undefined;
|
|
53543
|
+
var allNames = Object.getOwnPropertyNames(newFullLayout);
|
|
53544
|
+
for(var q = 0; q < allNames.length; q++) {
|
|
53545
|
+
var name = allNames[q];
|
|
53546
|
+
var start = name.substring(0, 5);
|
|
53547
|
+
if(start === 'xaxis' || start === 'yaxis') {
|
|
53548
|
+
var emptyCategories = newFullLayout[name]._emptyCategories;
|
|
53549
|
+
if(emptyCategories) emptyCategories();
|
|
53550
|
+
}
|
|
53551
|
+
}
|
|
53442
53552
|
// otherwise do the calcdata updates and calcTransform array remaps that we skipped earlier
|
|
53443
|
-
else
|
|
53553
|
+
} else {
|
|
53554
|
+
Plots.supplyDefaultsUpdateCalc(gd.calcdata, newFullData);
|
|
53555
|
+
}
|
|
53444
53556
|
|
|
53445
53557
|
// Note: what restyle/relayout use impliedEdits and clearAxisTypes for
|
|
53446
53558
|
// must be handled by the user when using Plotly.react.
|
|
@@ -53894,7 +54006,7 @@ function animate(gd, frameOrGroupNameOrFrameList, animationOpts) {
|
|
|
53894
54006
|
}
|
|
53895
54007
|
|
|
53896
54008
|
// Execute a callback after the wrapper function has been called n times.
|
|
53897
|
-
// This is used to defer the resolution until a transition has
|
|
54009
|
+
// This is used to defer the resolution until a transition has resolved *and*
|
|
53898
54010
|
// the frame has completed. If it's not done this way, then we get a race
|
|
53899
54011
|
// condition in which the animation might resolve before a transition is complete
|
|
53900
54012
|
// or vice versa.
|
|
@@ -54590,7 +54702,7 @@ exports._guiUpdate = guiEdit(update);
|
|
|
54590
54702
|
|
|
54591
54703
|
exports._storeDirectGUIEdit = _storeDirectGUIEdit;
|
|
54592
54704
|
|
|
54593
|
-
},{"../components/color":
|
|
54705
|
+
},{"../components/color":105,"../components/drawing":127,"../constants/xmlns_namespaces":213,"../lib":233,"../lib/events":226,"../lib/queue":248,"../lib/svg_text_utils":255,"../plots/cartesian/axes":279,"../plots/cartesian/constants":285,"../plots/cartesian/graph_interact":288,"../plots/cartesian/select":298,"../plots/plots":313,"../plots/polar/legacy":316,"../registry":326,"./edit_types":261,"./helpers":262,"./manage_arrays":264,"./plot_config":266,"./plot_schema":267,"./subroutines":269,"d3":21,"fast-isnumeric":23,"has-hover":54}],266:[function(_dereq_,module,exports){
|
|
54594
54706
|
/**
|
|
54595
54707
|
* Copyright 2012-2020, Plotly, Inc.
|
|
54596
54708
|
* All rights reserved.
|
|
@@ -54905,7 +55017,7 @@ module.exports = {
|
|
|
54905
55017
|
dfltConfig: dfltConfig
|
|
54906
55018
|
};
|
|
54907
55019
|
|
|
54908
|
-
},{}],
|
|
55020
|
+
},{}],267:[function(_dereq_,module,exports){
|
|
54909
55021
|
/**
|
|
54910
55022
|
* Copyright 2012-2020, Plotly, Inc.
|
|
54911
55023
|
* All rights reserved.
|
|
@@ -55616,7 +55728,7 @@ function insertAttrs(baseAttrs, newAttrs, astr) {
|
|
|
55616
55728
|
np.set(extendDeepAll(np.get() || {}, newAttrs));
|
|
55617
55729
|
}
|
|
55618
55730
|
|
|
55619
|
-
},{"../lib":
|
|
55731
|
+
},{"../lib":233,"../plots/animation_attributes":273,"../plots/attributes":275,"../plots/frame_attributes":308,"../plots/layout_attributes":311,"../plots/polar/legacy/area_attributes":314,"../plots/polar/legacy/axis_attributes":315,"../registry":326,"./edit_types":261,"./plot_config":266}],268:[function(_dereq_,module,exports){
|
|
55620
55732
|
/**
|
|
55621
55733
|
* Copyright 2012-2020, Plotly, Inc.
|
|
55622
55734
|
* All rights reserved.
|
|
@@ -55928,7 +56040,7 @@ exports.arrayEditor = function(parentIn, containerStr, itemOut) {
|
|
|
55928
56040
|
};
|
|
55929
56041
|
};
|
|
55930
56042
|
|
|
55931
|
-
},{"../lib":
|
|
56043
|
+
},{"../lib":233,"../plots/attributes":275}],269:[function(_dereq_,module,exports){
|
|
55932
56044
|
/**
|
|
55933
56045
|
* Copyright 2012-2020, Plotly, Inc.
|
|
55934
56046
|
* All rights reserved.
|
|
@@ -56652,7 +56764,7 @@ exports.drawMarginPushers = function(gd) {
|
|
|
56652
56764
|
Registry.getComponentMethod('colorbar', 'draw')(gd);
|
|
56653
56765
|
};
|
|
56654
56766
|
|
|
56655
|
-
},{"../components/color":
|
|
56767
|
+
},{"../components/color":105,"../components/drawing":127,"../components/modebar":165,"../components/titles":200,"../constants/alignment":207,"../lib":233,"../lib/clear_gl_canvases":221,"../plots/cartesian/autorange":278,"../plots/cartesian/axes":279,"../plots/cartesian/constraints":286,"../plots/plots":313,"../registry":326,"d3":21}],270:[function(_dereq_,module,exports){
|
|
56656
56768
|
/**
|
|
56657
56769
|
* Copyright 2012-2020, Plotly, Inc.
|
|
56658
56770
|
* All rights reserved.
|
|
@@ -57114,7 +57226,7 @@ function format(opts) {
|
|
|
57114
57226
|
return opts;
|
|
57115
57227
|
}
|
|
57116
57228
|
|
|
57117
|
-
},{"../lib":
|
|
57229
|
+
},{"../lib":233,"../plots/attributes":275,"../plots/plots":313,"./plot_config":266,"./plot_schema":267,"./plot_template":268}],271:[function(_dereq_,module,exports){
|
|
57118
57230
|
/**
|
|
57119
57231
|
* Copyright 2012-2020, Plotly, Inc.
|
|
57120
57232
|
* All rights reserved.
|
|
@@ -57335,7 +57447,7 @@ function toImage(gd, opts) {
|
|
|
57335
57447
|
|
|
57336
57448
|
module.exports = toImage;
|
|
57337
57449
|
|
|
57338
|
-
},{"../lib":
|
|
57450
|
+
},{"../lib":233,"../plots/plots":313,"../snapshot/helpers":330,"../snapshot/svgtoimg":332,"../snapshot/tosvg":334,"../version":494,"./plot_api":265,"fast-isnumeric":23}],272:[function(_dereq_,module,exports){
|
|
57339
57451
|
/**
|
|
57340
57452
|
* Copyright 2012-2020, Plotly, Inc.
|
|
57341
57453
|
* All rights reserved.
|
|
@@ -57766,7 +57878,7 @@ function convertPathToAttributeString(path) {
|
|
|
57766
57878
|
return astr;
|
|
57767
57879
|
}
|
|
57768
57880
|
|
|
57769
|
-
},{"../lib":
|
|
57881
|
+
},{"../lib":233,"../plots/plots":313,"./plot_config":266,"./plot_schema":267}],273:[function(_dereq_,module,exports){
|
|
57770
57882
|
/**
|
|
57771
57883
|
* Copyright 2012-2020, Plotly, Inc.
|
|
57772
57884
|
* All rights reserved.
|
|
@@ -57878,7 +57990,7 @@ module.exports = {
|
|
|
57878
57990
|
}
|
|
57879
57991
|
};
|
|
57880
57992
|
|
|
57881
|
-
},{}],
|
|
57993
|
+
},{}],274:[function(_dereq_,module,exports){
|
|
57882
57994
|
/**
|
|
57883
57995
|
* Copyright 2012-2020, Plotly, Inc.
|
|
57884
57996
|
* All rights reserved.
|
|
@@ -57973,7 +58085,7 @@ module.exports = function handleArrayContainerDefaults(parentObjIn, parentObjOut
|
|
|
57973
58085
|
return contOut;
|
|
57974
58086
|
};
|
|
57975
58087
|
|
|
57976
|
-
},{"../lib":
|
|
58088
|
+
},{"../lib":233,"../plot_api/plot_template":268}],275:[function(_dereq_,module,exports){
|
|
57977
58089
|
/**
|
|
57978
58090
|
* Copyright 2012-2020, Plotly, Inc.
|
|
57979
58091
|
* All rights reserved.
|
|
@@ -58114,7 +58226,7 @@ module.exports = {
|
|
|
58114
58226
|
}
|
|
58115
58227
|
};
|
|
58116
58228
|
|
|
58117
|
-
},{"../components/fx/attributes":
|
|
58229
|
+
},{"../components/fx/attributes":136}],276:[function(_dereq_,module,exports){
|
|
58118
58230
|
/**
|
|
58119
58231
|
* Copyright 2012-2020, Plotly, Inc.
|
|
58120
58232
|
* All rights reserved.
|
|
@@ -58206,7 +58318,7 @@ module.exports = function alignPeriod(trace, ax, axLetter, vals) {
|
|
|
58206
58318
|
return newVals;
|
|
58207
58319
|
};
|
|
58208
58320
|
|
|
58209
|
-
},{"../../constants/numerical":
|
|
58321
|
+
},{"../../constants/numerical":212,"../../lib":233,"fast-isnumeric":23}],277:[function(_dereq_,module,exports){
|
|
58210
58322
|
/**
|
|
58211
58323
|
* Copyright 2012-2020, Plotly, Inc.
|
|
58212
58324
|
* All rights reserved.
|
|
@@ -58235,7 +58347,7 @@ module.exports = {
|
|
|
58235
58347
|
}
|
|
58236
58348
|
};
|
|
58237
58349
|
|
|
58238
|
-
},{}],
|
|
58350
|
+
},{}],278:[function(_dereq_,module,exports){
|
|
58239
58351
|
/**
|
|
58240
58352
|
* Copyright 2012-2020, Plotly, Inc.
|
|
58241
58353
|
* All rights reserved.
|
|
@@ -58252,7 +58364,9 @@ var Lib = _dereq_('../../lib');
|
|
|
58252
58364
|
var FP_SAFE = _dereq_('../../constants/numerical').FP_SAFE;
|
|
58253
58365
|
var Registry = _dereq_('../../registry');
|
|
58254
58366
|
|
|
58255
|
-
var
|
|
58367
|
+
var axIds = _dereq_('./axis_ids');
|
|
58368
|
+
var getFromId = axIds.getFromId;
|
|
58369
|
+
var isLinked = axIds.isLinked;
|
|
58256
58370
|
|
|
58257
58371
|
module.exports = {
|
|
58258
58372
|
getAutoRange: getAutoRange,
|
|
@@ -58294,8 +58408,9 @@ function getAutoRange(gd, ax) {
|
|
|
58294
58408
|
var i, j;
|
|
58295
58409
|
var newRange = [];
|
|
58296
58410
|
|
|
58297
|
-
var
|
|
58298
|
-
var
|
|
58411
|
+
var fullLayout = gd._fullLayout;
|
|
58412
|
+
var getPadMin = makePadFn(fullLayout, ax, 0);
|
|
58413
|
+
var getPadMax = makePadFn(fullLayout, ax, 1);
|
|
58299
58414
|
var extremes = concatExtremes(gd, ax);
|
|
58300
58415
|
var minArray = extremes.min;
|
|
58301
58416
|
var maxArray = extremes.max;
|
|
@@ -58355,8 +58470,8 @@ function getAutoRange(gd, ax) {
|
|
|
58355
58470
|
} else if(dv / axLen > mbest) {
|
|
58356
58471
|
// in case of padding longer than the axis
|
|
58357
58472
|
// at least include the unpadded data values.
|
|
58358
|
-
minbest = {val: minpt.val,
|
|
58359
|
-
maxbest = {val: maxpt.val,
|
|
58473
|
+
minbest = {val: minpt.val, nopad: 1};
|
|
58474
|
+
maxbest = {val: maxpt.val, nopad: 1};
|
|
58360
58475
|
mbest = dv / axLen;
|
|
58361
58476
|
}
|
|
58362
58477
|
}
|
|
@@ -58393,17 +58508,17 @@ function getAutoRange(gd, ax) {
|
|
|
58393
58508
|
} else {
|
|
58394
58509
|
if(toZero) {
|
|
58395
58510
|
if(minbest.val >= 0) {
|
|
58396
|
-
minbest = {val: 0,
|
|
58511
|
+
minbest = {val: 0, nopad: 1};
|
|
58397
58512
|
}
|
|
58398
58513
|
if(maxbest.val <= 0) {
|
|
58399
|
-
maxbest = {val: 0,
|
|
58514
|
+
maxbest = {val: 0, nopad: 1};
|
|
58400
58515
|
}
|
|
58401
58516
|
} else if(nonNegative) {
|
|
58402
58517
|
if(minbest.val - mbest * getPadMin(minbest) < 0) {
|
|
58403
|
-
minbest = {val: 0,
|
|
58518
|
+
minbest = {val: 0, nopad: 1};
|
|
58404
58519
|
}
|
|
58405
58520
|
if(maxbest.val <= 0) {
|
|
58406
|
-
maxbest = {val: 1,
|
|
58521
|
+
maxbest = {val: 1, nopad: 1};
|
|
58407
58522
|
}
|
|
58408
58523
|
}
|
|
58409
58524
|
|
|
@@ -58440,13 +58555,15 @@ function calcBreaksLength(ax, v0, v1) {
|
|
|
58440
58555
|
* calculate the pixel padding for ax._min and ax._max entries with
|
|
58441
58556
|
* optional extrapad as 5% of the total axis length
|
|
58442
58557
|
*/
|
|
58443
|
-
function makePadFn(ax, max) {
|
|
58558
|
+
function makePadFn(fullLayout, ax, max) {
|
|
58444
58559
|
// 5% padding for points that specify extrapad: true
|
|
58445
58560
|
var extrappad = 0.05 * ax._length;
|
|
58446
58561
|
|
|
58562
|
+
var anchorAxis = ax._anchorAxis || {};
|
|
58563
|
+
|
|
58447
58564
|
if(
|
|
58448
58565
|
(ax.ticklabelposition || '').indexOf('inside') !== -1 ||
|
|
58449
|
-
(
|
|
58566
|
+
(anchorAxis.ticklabelposition || '').indexOf('inside') !== -1
|
|
58450
58567
|
) {
|
|
58451
58568
|
var axReverse = ax.autorange === 'reversed';
|
|
58452
58569
|
if(!axReverse) {
|
|
@@ -58456,8 +58573,11 @@ function makePadFn(ax, max) {
|
|
|
58456
58573
|
if(axReverse) max = !max;
|
|
58457
58574
|
}
|
|
58458
58575
|
|
|
58459
|
-
|
|
58460
|
-
|
|
58576
|
+
var zero = 0;
|
|
58577
|
+
if(!isLinked(fullLayout, ax._id)) {
|
|
58578
|
+
zero = padInsideLabelsOnAnchorAxis(ax, max);
|
|
58579
|
+
}
|
|
58580
|
+
extrappad = Math.max(zero, extrappad);
|
|
58461
58581
|
|
|
58462
58582
|
// domain-constrained axes: base extrappad on the unconstrained
|
|
58463
58583
|
// domain so it's consistent as the domain changes
|
|
@@ -58466,50 +58586,17 @@ function makePadFn(ax, max) {
|
|
|
58466
58586
|
(ax.domain[1] - ax.domain[0]);
|
|
58467
58587
|
}
|
|
58468
58588
|
|
|
58469
|
-
return function getPad(pt) {
|
|
58589
|
+
return function getPad(pt) {
|
|
58590
|
+
if(pt.nopad) return 0;
|
|
58591
|
+
return pt.pad + (pt.extrapad ? extrappad : zero);
|
|
58592
|
+
};
|
|
58470
58593
|
}
|
|
58471
58594
|
|
|
58472
58595
|
var TEXTPAD = 3;
|
|
58473
58596
|
|
|
58474
|
-
function
|
|
58475
|
-
var
|
|
58476
|
-
var
|
|
58477
|
-
return ticklabelposition.indexOf(str) !== -1;
|
|
58478
|
-
};
|
|
58479
|
-
|
|
58480
|
-
if(!has('inside')) return extrappad;
|
|
58481
|
-
var isTop = has('top');
|
|
58482
|
-
var isLeft = has('left');
|
|
58483
|
-
var isRight = has('right');
|
|
58484
|
-
var isBottom = has('bottom');
|
|
58485
|
-
var isAligned = isBottom || isLeft || isTop || isRight;
|
|
58486
|
-
|
|
58487
|
-
if(
|
|
58488
|
-
(max && (isLeft || isBottom)) ||
|
|
58489
|
-
(!max && (isRight || isTop))
|
|
58490
|
-
) {
|
|
58491
|
-
return extrappad;
|
|
58492
|
-
}
|
|
58493
|
-
|
|
58494
|
-
// increase padding to make more room for inside tick labels of the axis
|
|
58495
|
-
var fontSize = ax.tickfont ? ax.tickfont.size : 12;
|
|
58496
|
-
var isX = ax._id.charAt(0) === 'x';
|
|
58497
|
-
var morePad = (isX ? 1.2 : 0.6) * fontSize;
|
|
58498
|
-
|
|
58499
|
-
if(isAligned) {
|
|
58500
|
-
morePad *= 2;
|
|
58501
|
-
morePad += (ax.tickwidth || 0) / 2;
|
|
58502
|
-
}
|
|
58503
|
-
|
|
58504
|
-
morePad += TEXTPAD;
|
|
58505
|
-
|
|
58506
|
-
extrappad = Math.max(extrappad, morePad);
|
|
58507
|
-
|
|
58508
|
-
return extrappad;
|
|
58509
|
-
}
|
|
58510
|
-
|
|
58511
|
-
function adjustPadForInsideLabelsOnAnchorAxis(extrappad, ax, max) {
|
|
58512
|
-
var anchorAxis = (ax._anchorAxis || {});
|
|
58597
|
+
function padInsideLabelsOnAnchorAxis(ax, max) {
|
|
58598
|
+
var pad = 0;
|
|
58599
|
+
var anchorAxis = ax._anchorAxis || {};
|
|
58513
58600
|
if((anchorAxis.ticklabelposition || '').indexOf('inside') !== -1) {
|
|
58514
58601
|
// increase padding to make more room for inside tick labels of the counter axis
|
|
58515
58602
|
if((
|
|
@@ -58525,7 +58612,6 @@ function adjustPadForInsideLabelsOnAnchorAxis(extrappad, ax, max) {
|
|
|
58525
58612
|
)) {
|
|
58526
58613
|
var isX = ax._id.charAt(0) === 'x';
|
|
58527
58614
|
|
|
58528
|
-
var morePad = 0;
|
|
58529
58615
|
if(anchorAxis._vals) {
|
|
58530
58616
|
var rad = Lib.deg2rad(anchorAxis._tickAngles[anchorAxis._id + 'tick'] || 0);
|
|
58531
58617
|
var cosA = Math.abs(Math.cos(rad));
|
|
@@ -58534,29 +58620,24 @@ function adjustPadForInsideLabelsOnAnchorAxis(extrappad, ax, max) {
|
|
|
58534
58620
|
// use bounding boxes
|
|
58535
58621
|
anchorAxis._vals.forEach(function(t) {
|
|
58536
58622
|
if(t.bb) {
|
|
58537
|
-
var w = t.bb.width;
|
|
58538
|
-
var h = t.bb.height;
|
|
58623
|
+
var w = 2 * TEXTPAD + t.bb.width;
|
|
58624
|
+
var h = 2 * TEXTPAD + t.bb.height;
|
|
58539
58625
|
|
|
58540
|
-
|
|
58626
|
+
pad = Math.max(pad, isX ?
|
|
58541
58627
|
Math.max(w * cosA, h * sinA) :
|
|
58542
58628
|
Math.max(h * cosA, w * sinA)
|
|
58543
58629
|
);
|
|
58544
|
-
|
|
58545
|
-
// add extra pad around label
|
|
58546
|
-
morePad += 3;
|
|
58547
58630
|
}
|
|
58548
58631
|
});
|
|
58549
58632
|
}
|
|
58550
58633
|
|
|
58551
58634
|
if(anchorAxis.ticks === 'inside' && anchorAxis.ticklabelposition === 'inside') {
|
|
58552
|
-
|
|
58635
|
+
pad += anchorAxis.ticklen || 0;
|
|
58553
58636
|
}
|
|
58554
|
-
|
|
58555
|
-
extrappad = Math.max(extrappad, morePad);
|
|
58556
58637
|
}
|
|
58557
58638
|
}
|
|
58558
58639
|
|
|
58559
|
-
return
|
|
58640
|
+
return pad;
|
|
58560
58641
|
}
|
|
58561
58642
|
|
|
58562
58643
|
function concatExtremes(gd, ax, noMatch) {
|
|
@@ -58875,7 +58956,7 @@ function goodNumber(v) {
|
|
|
58875
58956
|
function lessOrEqual(v0, v1) { return v0 <= v1; }
|
|
58876
58957
|
function greaterOrEqual(v0, v1) { return v0 >= v1; }
|
|
58877
58958
|
|
|
58878
|
-
},{"../../constants/numerical":
|
|
58959
|
+
},{"../../constants/numerical":212,"../../lib":233,"../../registry":326,"./axis_ids":282,"fast-isnumeric":23}],279:[function(_dereq_,module,exports){
|
|
58879
58960
|
/**
|
|
58880
58961
|
* Copyright 2012-2020, Plotly, Inc.
|
|
58881
58962
|
* All rights reserved.
|
|
@@ -58934,6 +59015,10 @@ axes.setConvert = _dereq_('./set_convert');
|
|
|
58934
59015
|
var autoType = _dereq_('./axis_autotype');
|
|
58935
59016
|
|
|
58936
59017
|
var axisIds = _dereq_('./axis_ids');
|
|
59018
|
+
var idSort = axisIds.idSort;
|
|
59019
|
+
var isLinked = axisIds.isLinked;
|
|
59020
|
+
|
|
59021
|
+
// tight coupling to chart studio
|
|
58937
59022
|
axes.id2name = axisIds.id2name;
|
|
58938
59023
|
axes.name2id = axisIds.name2id;
|
|
58939
59024
|
axes.cleanId = axisIds.cleanId;
|
|
@@ -60323,9 +60408,23 @@ function formatDate(ax, out, hover, extraPrecision) {
|
|
|
60323
60408
|
// except for year headPart: turn this into "Jan 1, 2000" etc.
|
|
60324
60409
|
if(tr === 'd') dateStr += ', ' + headStr;
|
|
60325
60410
|
else dateStr = headStr + (dateStr ? ', ' + dateStr : '');
|
|
60326
|
-
} else
|
|
60327
|
-
|
|
60328
|
-
|
|
60411
|
+
} else {
|
|
60412
|
+
if(
|
|
60413
|
+
!ax._inCalcTicks ||
|
|
60414
|
+
ax._prevDateHead !== headStr
|
|
60415
|
+
) {
|
|
60416
|
+
ax._prevDateHead = headStr;
|
|
60417
|
+
dateStr += '<br>' + headStr;
|
|
60418
|
+
} else {
|
|
60419
|
+
var isInside = (ax.ticklabelposition || '').indexOf('inside') !== -1;
|
|
60420
|
+
var side = ax._realSide || ax.side; // polar mocks the side of the radial axis
|
|
60421
|
+
if(
|
|
60422
|
+
(!isInside && side === 'top') ||
|
|
60423
|
+
(isInside && side === 'bottom')
|
|
60424
|
+
) {
|
|
60425
|
+
dateStr += '<br> ';
|
|
60426
|
+
}
|
|
60427
|
+
}
|
|
60329
60428
|
}
|
|
60330
60429
|
}
|
|
60331
60430
|
|
|
@@ -61771,7 +61870,7 @@ axes.drawZeroLine = function(gd, ax, opts) {
|
|
|
61771
61870
|
// If several zerolines enter at the same time we will sort once per,
|
|
61772
61871
|
// but generally this should be a minimal overhead.
|
|
61773
61872
|
opts.layer.selectAll('path').sort(function(da, db) {
|
|
61774
|
-
return
|
|
61873
|
+
return idSort(da.id, db.id);
|
|
61775
61874
|
});
|
|
61776
61875
|
});
|
|
61777
61876
|
|
|
@@ -62069,7 +62168,8 @@ axes.drawLabels = function(gd, ax, opts) {
|
|
|
62069
62168
|
var anchorAx = ax._anchorAxis;
|
|
62070
62169
|
if(
|
|
62071
62170
|
anchorAx && anchorAx.autorange &&
|
|
62072
|
-
(ax.ticklabelposition || '').indexOf('inside') !== -1
|
|
62171
|
+
(ax.ticklabelposition || '').indexOf('inside') !== -1 &&
|
|
62172
|
+
!isLinked(fullLayout, ax._id)
|
|
62073
62173
|
) {
|
|
62074
62174
|
if(!fullLayout._insideTickLabelsAutorange) {
|
|
62075
62175
|
fullLayout._insideTickLabelsAutorange = {};
|
|
@@ -62212,27 +62312,36 @@ function drawTitle(gd, ax) {
|
|
|
62212
62312
|
var axId = ax._id;
|
|
62213
62313
|
var axLetter = axId.charAt(0);
|
|
62214
62314
|
var fontSize = ax.title.font.size;
|
|
62215
|
-
|
|
62216
62315
|
var titleStandoff;
|
|
62217
62316
|
|
|
62218
62317
|
if(ax.title.hasOwnProperty('standoff')) {
|
|
62219
62318
|
titleStandoff = ax._depth + ax.title.standoff + approxTitleDepth(ax);
|
|
62220
62319
|
} else {
|
|
62320
|
+
var isInside = (ax.ticklabelposition || '').indexOf('inside') !== -1;
|
|
62321
|
+
|
|
62221
62322
|
if(ax.type === 'multicategory') {
|
|
62222
62323
|
titleStandoff = ax._depth;
|
|
62223
62324
|
} else {
|
|
62224
|
-
var offsetBase = 1.5;
|
|
62225
|
-
|
|
62325
|
+
var offsetBase = 1.5 * fontSize;
|
|
62326
|
+
if(isInside) {
|
|
62327
|
+
offsetBase = 0.5 * fontSize;
|
|
62328
|
+
if(ax.ticks === 'outside') {
|
|
62329
|
+
offsetBase += ax.ticklen;
|
|
62330
|
+
}
|
|
62331
|
+
}
|
|
62332
|
+
titleStandoff = 10 + offsetBase + (ax.linewidth ? ax.linewidth - 1 : 0);
|
|
62226
62333
|
}
|
|
62227
62334
|
|
|
62228
|
-
if(
|
|
62229
|
-
|
|
62230
|
-
|
|
62231
|
-
|
|
62232
|
-
|
|
62233
|
-
|
|
62234
|
-
|
|
62235
|
-
|
|
62335
|
+
if(!isInside) {
|
|
62336
|
+
if(axLetter === 'x') {
|
|
62337
|
+
titleStandoff += ax.side === 'top' ?
|
|
62338
|
+
fontSize * (ax.showticklabels ? 1 : 0) :
|
|
62339
|
+
fontSize * (ax.showticklabels ? 1.5 : 0.5);
|
|
62340
|
+
} else {
|
|
62341
|
+
titleStandoff += ax.side === 'right' ?
|
|
62342
|
+
fontSize * (ax.showticklabels ? 1 : 0.5) :
|
|
62343
|
+
fontSize * (ax.showticklabels ? 0.5 : 0);
|
|
62344
|
+
}
|
|
62236
62345
|
}
|
|
62237
62346
|
}
|
|
62238
62347
|
|
|
@@ -62567,7 +62676,7 @@ function moveOutsideBreak(v, ax) {
|
|
|
62567
62676
|
return v;
|
|
62568
62677
|
}
|
|
62569
62678
|
|
|
62570
|
-
},{"../../components/color":
|
|
62679
|
+
},{"../../components/color":105,"../../components/drawing":127,"../../components/titles":200,"../../constants/alignment":207,"../../constants/numerical":212,"../../lib":233,"../../lib/svg_text_utils":255,"../../plots/plots":313,"../../registry":326,"./autorange":278,"./axis_autotype":280,"./axis_ids":282,"./clean_ticks":284,"./layout_attributes":293,"./set_convert":299,"d3":21,"fast-isnumeric":23}],280:[function(_dereq_,module,exports){
|
|
62571
62680
|
/**
|
|
62572
62681
|
* Copyright 2012-2020, Plotly, Inc.
|
|
62573
62682
|
* All rights reserved.
|
|
@@ -62698,7 +62807,7 @@ function multiCategory(a) {
|
|
|
62698
62807
|
return isArrayOrTypedArray(a[0]) && isArrayOrTypedArray(a[1]);
|
|
62699
62808
|
}
|
|
62700
62809
|
|
|
62701
|
-
},{"../../constants/numerical":
|
|
62810
|
+
},{"../../constants/numerical":212,"../../lib":233,"fast-isnumeric":23}],281:[function(_dereq_,module,exports){
|
|
62702
62811
|
/**
|
|
62703
62812
|
* Copyright 2012-2020, Plotly, Inc.
|
|
62704
62813
|
* All rights reserved.
|
|
@@ -63006,7 +63115,7 @@ function indexOfDay(v) {
|
|
|
63006
63115
|
];
|
|
63007
63116
|
}
|
|
63008
63117
|
|
|
63009
|
-
},{"../../lib":
|
|
63118
|
+
},{"../../lib":233,"../../registry":326,"../array_container_defaults":274,"./category_order_defaults":283,"./constants":285,"./layout_attributes":293,"./line_grid_defaults":295,"./set_convert":299,"./tick_label_defaults":300,"./tick_mark_defaults":301,"./tick_value_defaults":302,"fast-isnumeric":23}],282:[function(_dereq_,module,exports){
|
|
63010
63119
|
/**
|
|
63011
63120
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63012
63121
|
* All rights reserved.
|
|
@@ -63146,7 +63255,23 @@ exports.ref2id = function(ar) {
|
|
|
63146
63255
|
return (/^[xyz]/.test(ar)) ? ar.split(' ')[0] : false;
|
|
63147
63256
|
};
|
|
63148
63257
|
|
|
63149
|
-
|
|
63258
|
+
function isFound(axId, list) {
|
|
63259
|
+
if(list && list.length) {
|
|
63260
|
+
for(var i = 0; i < list.length; i++) {
|
|
63261
|
+
if(list[i][axId]) return true;
|
|
63262
|
+
}
|
|
63263
|
+
}
|
|
63264
|
+
return false;
|
|
63265
|
+
}
|
|
63266
|
+
|
|
63267
|
+
exports.isLinked = function(fullLayout, axId) {
|
|
63268
|
+
return (
|
|
63269
|
+
isFound(axId, fullLayout._axisMatchGroups) ||
|
|
63270
|
+
isFound(axId, fullLayout._axisConstraintGroups)
|
|
63271
|
+
);
|
|
63272
|
+
};
|
|
63273
|
+
|
|
63274
|
+
},{"../../registry":326,"./constants":285}],283:[function(_dereq_,module,exports){
|
|
63150
63275
|
/**
|
|
63151
63276
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63152
63277
|
* All rights reserved.
|
|
@@ -63240,7 +63365,7 @@ module.exports = function handleCategoryOrderDefaults(containerIn, containerOut,
|
|
|
63240
63365
|
}
|
|
63241
63366
|
};
|
|
63242
63367
|
|
|
63243
|
-
},{}],
|
|
63368
|
+
},{}],284:[function(_dereq_,module,exports){
|
|
63244
63369
|
/**
|
|
63245
63370
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63246
63371
|
* All rights reserved.
|
|
@@ -63332,7 +63457,7 @@ exports.tick0 = function(tick0, axType, calendar, dtick) {
|
|
|
63332
63457
|
return isNumeric(tick0) ? Number(tick0) : 0;
|
|
63333
63458
|
};
|
|
63334
63459
|
|
|
63335
|
-
},{"../../constants/numerical":
|
|
63460
|
+
},{"../../constants/numerical":212,"../../lib":233,"fast-isnumeric":23}],285:[function(_dereq_,module,exports){
|
|
63336
63461
|
/**
|
|
63337
63462
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63338
63463
|
* All rights reserved.
|
|
@@ -63424,7 +63549,7 @@ module.exports = {
|
|
|
63424
63549
|
}
|
|
63425
63550
|
};
|
|
63426
63551
|
|
|
63427
|
-
},{"../../lib/regex":
|
|
63552
|
+
},{"../../lib/regex":249}],286:[function(_dereq_,module,exports){
|
|
63428
63553
|
/**
|
|
63429
63554
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63430
63555
|
* All rights reserved.
|
|
@@ -63992,8 +64117,8 @@ exports.enforce = function enforce(gd) {
|
|
|
63992
64117
|
// *are* expanding to the full domain
|
|
63993
64118
|
var outerMin = rangeCenter - halfRange * factor * 1.0001;
|
|
63994
64119
|
var outerMax = rangeCenter + halfRange * factor * 1.0001;
|
|
63995
|
-
var getPadMin = autorange.makePadFn(ax, 0);
|
|
63996
|
-
var getPadMax = autorange.makePadFn(ax, 1);
|
|
64120
|
+
var getPadMin = autorange.makePadFn(fullLayout, ax, 0);
|
|
64121
|
+
var getPadMax = autorange.makePadFn(fullLayout, ax, 1);
|
|
63997
64122
|
|
|
63998
64123
|
updateDomain(ax, factor);
|
|
63999
64124
|
var m = Math.abs(ax._m);
|
|
@@ -64075,7 +64200,7 @@ function updateDomain(ax, factor) {
|
|
|
64075
64200
|
ax.setScale();
|
|
64076
64201
|
}
|
|
64077
64202
|
|
|
64078
|
-
},{"../../constants/alignment":
|
|
64203
|
+
},{"../../constants/alignment":207,"../../constants/numerical":212,"../../lib":233,"./autorange":278,"./axis_ids":282,"./layout_attributes":293,"./scale_zoom":297,"./set_convert":299}],287:[function(_dereq_,module,exports){
|
|
64079
64204
|
/**
|
|
64080
64205
|
* Copyright 2012-2020, Plotly, Inc.
|
|
64081
64206
|
* All rights reserved.
|
|
@@ -65413,7 +65538,7 @@ module.exports = {
|
|
|
65413
65538
|
attachWheelEventHandler: attachWheelEventHandler
|
|
65414
65539
|
};
|
|
65415
65540
|
|
|
65416
|
-
},{"../../components/color":
|
|
65541
|
+
},{"../../components/color":105,"../../components/dragelement":124,"../../components/dragelement/helpers":123,"../../components/drawing":127,"../../components/fx":145,"../../constants/alignment":207,"../../lib":233,"../../lib/clear_gl_canvases":221,"../../lib/setcursor":253,"../../lib/svg_text_utils":255,"../../plot_api/subroutines":269,"../../registry":326,"../plots":313,"./axes":279,"./axis_ids":282,"./constants":285,"./scale_zoom":297,"./select":298,"d3":21,"has-passive-events":55,"tinycolor2":88}],288:[function(_dereq_,module,exports){
|
|
65417
65542
|
/**
|
|
65418
65543
|
* Copyright 2012-2020, Plotly, Inc.
|
|
65419
65544
|
* All rights reserved.
|
|
@@ -65581,7 +65706,7 @@ exports.updateFx = function(gd) {
|
|
|
65581
65706
|
setCursor(fullLayout._draggers, cursor);
|
|
65582
65707
|
};
|
|
65583
65708
|
|
|
65584
|
-
},{"../../components/dragelement":
|
|
65709
|
+
},{"../../components/dragelement":124,"../../components/fx":145,"../../lib/setcursor":253,"./constants":285,"./dragbox":287,"d3":21}],289:[function(_dereq_,module,exports){
|
|
65585
65710
|
/**
|
|
65586
65711
|
* Copyright 2012-2020, Plotly, Inc.
|
|
65587
65712
|
* All rights reserved.
|
|
@@ -65617,7 +65742,7 @@ module.exports = {
|
|
|
65617
65742
|
clearSelect: clearSelect
|
|
65618
65743
|
};
|
|
65619
65744
|
|
|
65620
|
-
},{}],
|
|
65745
|
+
},{}],290:[function(_dereq_,module,exports){
|
|
65621
65746
|
/**
|
|
65622
65747
|
* Copyright 2012-2020, Plotly, Inc.
|
|
65623
65748
|
* All rights reserved.
|
|
@@ -65674,7 +65799,7 @@ module.exports = {
|
|
|
65674
65799
|
getTransform: getTransform
|
|
65675
65800
|
};
|
|
65676
65801
|
|
|
65677
|
-
},{"../../lib":
|
|
65802
|
+
},{"../../lib":233}],291:[function(_dereq_,module,exports){
|
|
65678
65803
|
/**
|
|
65679
65804
|
* Copyright 2012-2020, Plotly, Inc.
|
|
65680
65805
|
* All rights reserved.
|
|
@@ -65752,7 +65877,7 @@ module.exports = function makeIncludeComponents(containerArrayName) {
|
|
|
65752
65877
|
};
|
|
65753
65878
|
};
|
|
65754
65879
|
|
|
65755
|
-
},{"../../lib":
|
|
65880
|
+
},{"../../lib":233,"../../registry":326,"./axis_ids":282}],292:[function(_dereq_,module,exports){
|
|
65756
65881
|
/**
|
|
65757
65882
|
* Copyright 2012-2020, Plotly, Inc.
|
|
65758
65883
|
* All rights reserved.
|
|
@@ -66370,7 +66495,7 @@ exports.toSVG = function(gd) {
|
|
|
66370
66495
|
|
|
66371
66496
|
exports.updateFx = _dereq_('./graph_interact').updateFx;
|
|
66372
66497
|
|
|
66373
|
-
},{"../../components/drawing":
|
|
66498
|
+
},{"../../components/drawing":127,"../../constants/xmlns_namespaces":213,"../../lib":233,"../../registry":326,"../get_data":309,"../plots":313,"./attributes":277,"./axis_ids":282,"./constants":285,"./graph_interact":288,"./layout_attributes":293,"./layout_defaults":294,"./transition_axes":303,"d3":21}],293:[function(_dereq_,module,exports){
|
|
66374
66499
|
/**
|
|
66375
66500
|
* Copyright 2012-2020, Plotly, Inc.
|
|
66376
66501
|
* All rights reserved.
|
|
@@ -67090,7 +67215,7 @@ module.exports = {
|
|
|
67090
67215
|
}
|
|
67091
67216
|
};
|
|
67092
67217
|
|
|
67093
|
-
},{"../../components/color/attributes":
|
|
67218
|
+
},{"../../components/color/attributes":104,"../../components/drawing/attributes":126,"../../constants/docs":209,"../../constants/numerical":212,"../../lib/extend":227,"../../plot_api/plot_template":268,"../font_attributes":307,"./constants":285}],294:[function(_dereq_,module,exports){
|
|
67094
67219
|
/**
|
|
67095
67220
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67096
67221
|
* All rights reserved.
|
|
@@ -67477,7 +67602,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, fullData) {
|
|
|
67477
67602
|
});
|
|
67478
67603
|
};
|
|
67479
67604
|
|
|
67480
|
-
},{"../../components/color":
|
|
67605
|
+
},{"../../components/color":105,"../../components/fx/helpers":141,"../../components/fx/hovermode_defaults":144,"../../lib":233,"../../plot_api/plot_template":268,"../../registry":326,"../layout_attributes":311,"./axis_defaults":281,"./axis_ids":282,"./constants":285,"./constraints":286,"./layout_attributes":293,"./position_defaults":296,"./type_defaults":304}],295:[function(_dereq_,module,exports){
|
|
67481
67606
|
/**
|
|
67482
67607
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67483
67608
|
* All rights reserved.
|
|
@@ -67542,7 +67667,7 @@ module.exports = function handleLineGridDefaults(containerIn, containerOut, coer
|
|
|
67542
67667
|
}
|
|
67543
67668
|
};
|
|
67544
67669
|
|
|
67545
|
-
},{"../../components/color/attributes":
|
|
67670
|
+
},{"../../components/color/attributes":104,"../../lib":233,"tinycolor2":88}],296:[function(_dereq_,module,exports){
|
|
67546
67671
|
/**
|
|
67547
67672
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67548
67673
|
* All rights reserved.
|
|
@@ -67630,7 +67755,7 @@ module.exports = function handlePositionDefaults(containerIn, containerOut, coer
|
|
|
67630
67755
|
return containerOut;
|
|
67631
67756
|
};
|
|
67632
67757
|
|
|
67633
|
-
},{"../../lib":
|
|
67758
|
+
},{"../../lib":233,"fast-isnumeric":23}],297:[function(_dereq_,module,exports){
|
|
67634
67759
|
/**
|
|
67635
67760
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67636
67761
|
* All rights reserved.
|
|
@@ -67659,7 +67784,7 @@ module.exports = function scaleZoom(ax, factor, centerFraction) {
|
|
|
67659
67784
|
ax.setScale();
|
|
67660
67785
|
};
|
|
67661
67786
|
|
|
67662
|
-
},{"../../constants/alignment":
|
|
67787
|
+
},{"../../constants/alignment":207}],298:[function(_dereq_,module,exports){
|
|
67663
67788
|
/**
|
|
67664
67789
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67665
67790
|
* All rights reserved.
|
|
@@ -68602,7 +68727,7 @@ module.exports = {
|
|
|
68602
68727
|
selectOnClick: selectOnClick
|
|
68603
68728
|
};
|
|
68604
68729
|
|
|
68605
|
-
},{"../../components/color":
|
|
68730
|
+
},{"../../components/color":105,"../../components/dragelement/helpers":123,"../../components/drawing":127,"../../components/fx":145,"../../components/fx/helpers":141,"../../components/shapes/draw_newshape/display_outlines":190,"../../components/shapes/draw_newshape/helpers":191,"../../components/shapes/draw_newshape/newshapes":192,"../../lib":233,"../../lib/clear_gl_canvases":221,"../../lib/polygon":245,"../../lib/throttle":256,"../../plot_api/subroutines":269,"../../registry":326,"./axis_ids":282,"./constants":285,"./handle_outline":289,"./helpers":290,"polybooljs":79}],299:[function(_dereq_,module,exports){
|
|
68606
68731
|
/**
|
|
68607
68732
|
* Copyright 2012-2020, Plotly, Inc.
|
|
68608
68733
|
* All rights reserved.
|
|
@@ -69560,7 +69685,7 @@ module.exports = function setConvert(ax, fullLayout) {
|
|
|
69560
69685
|
delete ax._forceTick0;
|
|
69561
69686
|
};
|
|
69562
69687
|
|
|
69563
|
-
},{"../../constants/numerical":
|
|
69688
|
+
},{"../../constants/numerical":212,"../../lib":233,"./axis_ids":282,"./constants":285,"d3":21,"d3-time-format":19,"fast-isnumeric":23}],300:[function(_dereq_,module,exports){
|
|
69564
69689
|
/**
|
|
69565
69690
|
* Copyright 2012-2020, Plotly, Inc.
|
|
69566
69691
|
* All rights reserved.
|
|
@@ -69687,7 +69812,7 @@ function tickformatstopDefaults(valueIn, valueOut) {
|
|
|
69687
69812
|
}
|
|
69688
69813
|
}
|
|
69689
69814
|
|
|
69690
|
-
},{"../../components/color":
|
|
69815
|
+
},{"../../components/color":105,"../../lib":233,"../array_container_defaults":274,"./layout_attributes":293}],301:[function(_dereq_,module,exports){
|
|
69691
69816
|
/**
|
|
69692
69817
|
* Copyright 2012-2020, Plotly, Inc.
|
|
69693
69818
|
* All rights reserved.
|
|
@@ -69720,7 +69845,7 @@ module.exports = function handleTickDefaults(containerIn, containerOut, coerce,
|
|
|
69720
69845
|
}
|
|
69721
69846
|
};
|
|
69722
69847
|
|
|
69723
|
-
},{"../../lib":
|
|
69848
|
+
},{"../../lib":233,"./layout_attributes":293}],302:[function(_dereq_,module,exports){
|
|
69724
69849
|
/**
|
|
69725
69850
|
* Copyright 2012-2020, Plotly, Inc.
|
|
69726
69851
|
* All rights reserved.
|
|
@@ -69767,7 +69892,7 @@ module.exports = function handleTickValueDefaults(containerIn, containerOut, coe
|
|
|
69767
69892
|
}
|
|
69768
69893
|
};
|
|
69769
69894
|
|
|
69770
|
-
},{"../../lib":
|
|
69895
|
+
},{"../../lib":233,"./clean_ticks":284}],303:[function(_dereq_,module,exports){
|
|
69771
69896
|
/**
|
|
69772
69897
|
* Copyright 2012-2020, Plotly, Inc.
|
|
69773
69898
|
* All rights reserved.
|
|
@@ -69980,7 +70105,7 @@ module.exports = function transitionAxes(gd, edits, transitionOpts, makeOnComple
|
|
|
69980
70105
|
return Promise.resolve();
|
|
69981
70106
|
};
|
|
69982
70107
|
|
|
69983
|
-
},{"../../components/drawing":
|
|
70108
|
+
},{"../../components/drawing":127,"../../lib":233,"../../registry":326,"./axes":279,"d3":21}],304:[function(_dereq_,module,exports){
|
|
69984
70109
|
/**
|
|
69985
70110
|
* Copyright 2012-2020, Plotly, Inc.
|
|
69986
70111
|
* All rights reserved.
|
|
@@ -70120,7 +70245,7 @@ function isBoxWithoutPositionCoords(trace, axLetter) {
|
|
|
70120
70245
|
);
|
|
70121
70246
|
}
|
|
70122
70247
|
|
|
70123
|
-
},{"../../registry":
|
|
70248
|
+
},{"../../registry":326,"./axis_autotype":280}],305:[function(_dereq_,module,exports){
|
|
70124
70249
|
/**
|
|
70125
70250
|
* Copyright 2012-2020, Plotly, Inc.
|
|
70126
70251
|
* All rights reserved.
|
|
@@ -70547,7 +70672,7 @@ function crawl(attrs, callback, path, depth) {
|
|
|
70547
70672
|
});
|
|
70548
70673
|
}
|
|
70549
70674
|
|
|
70550
|
-
},{"../lib":
|
|
70675
|
+
},{"../lib":233,"../registry":326}],306:[function(_dereq_,module,exports){
|
|
70551
70676
|
/**
|
|
70552
70677
|
* Copyright 2012-2020, Plotly, Inc.
|
|
70553
70678
|
* All rights reserved.
|
|
@@ -70659,7 +70784,7 @@ exports.defaults = function(containerOut, layout, coerce, dfltDomains) {
|
|
|
70659
70784
|
if(!(y[0] < y[1])) containerOut.domain.y = dfltY.slice();
|
|
70660
70785
|
};
|
|
70661
70786
|
|
|
70662
|
-
},{"../lib/extend":
|
|
70787
|
+
},{"../lib/extend":227}],307:[function(_dereq_,module,exports){
|
|
70663
70788
|
/**
|
|
70664
70789
|
* Copyright 2012-2020, Plotly, Inc.
|
|
70665
70790
|
* All rights reserved.
|
|
@@ -70724,7 +70849,7 @@ module.exports = function(opts) {
|
|
|
70724
70849
|
return attrs;
|
|
70725
70850
|
};
|
|
70726
70851
|
|
|
70727
|
-
},{}],
|
|
70852
|
+
},{}],308:[function(_dereq_,module,exports){
|
|
70728
70853
|
/**
|
|
70729
70854
|
* Copyright 2012-2020, Plotly, Inc.
|
|
70730
70855
|
* All rights reserved.
|
|
@@ -70770,7 +70895,7 @@ module.exports = {
|
|
|
70770
70895
|
}
|
|
70771
70896
|
};
|
|
70772
70897
|
|
|
70773
|
-
},{}],
|
|
70898
|
+
},{}],309:[function(_dereq_,module,exports){
|
|
70774
70899
|
/**
|
|
70775
70900
|
* Copyright 2012-2020, Plotly, Inc.
|
|
70776
70901
|
* All rights reserved.
|
|
@@ -70899,7 +71024,7 @@ exports.getSubplotData = function getSubplotData(data, type, subplotId) {
|
|
|
70899
71024
|
return subplotData;
|
|
70900
71025
|
};
|
|
70901
71026
|
|
|
70902
|
-
},{"../registry":
|
|
71027
|
+
},{"../registry":326,"./cartesian/constants":285}],310:[function(_dereq_,module,exports){
|
|
70903
71028
|
/**
|
|
70904
71029
|
* Copyright 2012-2020, Plotly, Inc.
|
|
70905
71030
|
* All rights reserved.
|
|
@@ -70933,7 +71058,7 @@ function project(camera, v) {
|
|
|
70933
71058
|
|
|
70934
71059
|
module.exports = project;
|
|
70935
71060
|
|
|
70936
|
-
},{}],
|
|
71061
|
+
},{}],311:[function(_dereq_,module,exports){
|
|
70937
71062
|
/**
|
|
70938
71063
|
* Copyright 2012-2020, Plotly, Inc.
|
|
70939
71064
|
* All rights reserved.
|
|
@@ -71274,7 +71399,7 @@ module.exports = {
|
|
|
71274
71399
|
}
|
|
71275
71400
|
};
|
|
71276
71401
|
|
|
71277
|
-
},{"../components/color/attributes":
|
|
71402
|
+
},{"../components/color/attributes":104,"../components/shapes/draw_newshape/attributes":187,"../lib/extend":227,"./animation_attributes":273,"./font_attributes":307,"./pad_attributes":312}],312:[function(_dereq_,module,exports){
|
|
71278
71403
|
/**
|
|
71279
71404
|
* Copyright 2012-2020, Plotly, Inc.
|
|
71280
71405
|
* All rights reserved.
|
|
@@ -71329,7 +71454,7 @@ module.exports = function(opts) {
|
|
|
71329
71454
|
};
|
|
71330
71455
|
};
|
|
71331
71456
|
|
|
71332
|
-
},{}],
|
|
71457
|
+
},{}],313:[function(_dereq_,module,exports){
|
|
71333
71458
|
/**
|
|
71334
71459
|
* Copyright 2012-2020, Plotly, Inc.
|
|
71335
71460
|
* All rights reserved.
|
|
@@ -73198,8 +73323,13 @@ function initMargins(fullLayout) {
|
|
|
73198
73323
|
if(!fullLayout._pushmarginIds) fullLayout._pushmarginIds = {};
|
|
73199
73324
|
}
|
|
73200
73325
|
|
|
73201
|
-
|
|
73202
|
-
var
|
|
73326
|
+
// non-negotiable - this is the smallest height we will allow users to specify via explicit margins
|
|
73327
|
+
var MIN_SPECIFIED_WIDTH = 2;
|
|
73328
|
+
var MIN_SPECIFIED_HEIGHT = 2;
|
|
73329
|
+
|
|
73330
|
+
// could be exposed as an option - the smallest we will allow automargin to shrink a larger plot
|
|
73331
|
+
var MIN_REDUCED_WIDTH = 64;
|
|
73332
|
+
var MIN_REDUCED_HEIGHT = 64;
|
|
73203
73333
|
|
|
73204
73334
|
/**
|
|
73205
73335
|
* autoMargin: called by components that may need to expand the margins to
|
|
@@ -73220,20 +73350,33 @@ plots.autoMargin = function(gd, id, o) {
|
|
|
73220
73350
|
var fullLayout = gd._fullLayout;
|
|
73221
73351
|
var width = fullLayout.width;
|
|
73222
73352
|
var height = fullLayout.height;
|
|
73353
|
+
var margin = fullLayout.margin;
|
|
73354
|
+
|
|
73355
|
+
var minFinalWidth = Lib.constrain(
|
|
73356
|
+
width - margin.l - margin.r,
|
|
73357
|
+
MIN_SPECIFIED_WIDTH,
|
|
73358
|
+
MIN_REDUCED_WIDTH
|
|
73359
|
+
);
|
|
73360
|
+
|
|
73361
|
+
var minFinalHeight = Lib.constrain(
|
|
73362
|
+
height - margin.t - margin.b,
|
|
73363
|
+
MIN_SPECIFIED_HEIGHT,
|
|
73364
|
+
MIN_REDUCED_HEIGHT
|
|
73365
|
+
);
|
|
73366
|
+
|
|
73223
73367
|
var maxSpaceW = Math.max(0, width - minFinalWidth);
|
|
73224
73368
|
var maxSpaceH = Math.max(0, height - minFinalHeight);
|
|
73225
73369
|
|
|
73226
73370
|
var pushMargin = fullLayout._pushmargin;
|
|
73227
73371
|
var pushMarginIds = fullLayout._pushmarginIds;
|
|
73228
73372
|
|
|
73229
|
-
if(
|
|
73373
|
+
if(margin.autoexpand !== false) {
|
|
73230
73374
|
if(!o) {
|
|
73231
73375
|
delete pushMargin[id];
|
|
73232
73376
|
delete pushMarginIds[id];
|
|
73233
73377
|
} else {
|
|
73234
73378
|
var pad = o.pad;
|
|
73235
73379
|
if(pad === undefined) {
|
|
73236
|
-
var margin = fullLayout.margin;
|
|
73237
73380
|
// if no explicit pad is given, use 12px unless there's a
|
|
73238
73381
|
// specified margin that's smaller than that
|
|
73239
73382
|
pad = Math.min(12, margin.l, margin.r, margin.t, margin.b);
|
|
@@ -73241,15 +73384,19 @@ plots.autoMargin = function(gd, id, o) {
|
|
|
73241
73384
|
|
|
73242
73385
|
// if the item is too big, just give it enough automargin to
|
|
73243
73386
|
// make sure you can still grab it and bring it back
|
|
73244
|
-
|
|
73245
|
-
|
|
73246
|
-
|
|
73247
|
-
|
|
73387
|
+
if(maxSpaceW) {
|
|
73388
|
+
var rW = (o.l + o.r) / maxSpaceW;
|
|
73389
|
+
if(rW > 1) {
|
|
73390
|
+
o.l /= rW;
|
|
73391
|
+
o.r /= rW;
|
|
73392
|
+
}
|
|
73248
73393
|
}
|
|
73249
|
-
|
|
73250
|
-
|
|
73251
|
-
|
|
73252
|
-
|
|
73394
|
+
if(maxSpaceH) {
|
|
73395
|
+
var rH = (o.t + o.b) / maxSpaceH;
|
|
73396
|
+
if(rH > 1) {
|
|
73397
|
+
o.t /= rH;
|
|
73398
|
+
o.b /= rH;
|
|
73399
|
+
}
|
|
73253
73400
|
}
|
|
73254
73401
|
|
|
73255
73402
|
var xl = o.xl !== undefined ? o.xl : o.x;
|
|
@@ -73276,8 +73423,6 @@ plots.doAutoMargin = function(gd) {
|
|
|
73276
73423
|
var fullLayout = gd._fullLayout;
|
|
73277
73424
|
var width = fullLayout.width;
|
|
73278
73425
|
var height = fullLayout.height;
|
|
73279
|
-
var maxSpaceW = Math.max(0, width - minFinalWidth);
|
|
73280
|
-
var maxSpaceH = Math.max(0, height - minFinalHeight);
|
|
73281
73426
|
|
|
73282
73427
|
if(!fullLayout._size) fullLayout._size = {};
|
|
73283
73428
|
initMargins(fullLayout);
|
|
@@ -73350,16 +73495,35 @@ plots.doAutoMargin = function(gd) {
|
|
|
73350
73495
|
}
|
|
73351
73496
|
}
|
|
73352
73497
|
|
|
73353
|
-
var
|
|
73354
|
-
|
|
73355
|
-
|
|
73356
|
-
|
|
73498
|
+
var minFinalWidth = Lib.constrain(
|
|
73499
|
+
width - margin.l - margin.r,
|
|
73500
|
+
MIN_SPECIFIED_WIDTH,
|
|
73501
|
+
MIN_REDUCED_WIDTH
|
|
73502
|
+
);
|
|
73503
|
+
|
|
73504
|
+
var minFinalHeight = Lib.constrain(
|
|
73505
|
+
height - margin.t - margin.b,
|
|
73506
|
+
MIN_SPECIFIED_HEIGHT,
|
|
73507
|
+
MIN_REDUCED_HEIGHT
|
|
73508
|
+
);
|
|
73509
|
+
|
|
73510
|
+
var maxSpaceW = Math.max(0, width - minFinalWidth);
|
|
73511
|
+
var maxSpaceH = Math.max(0, height - minFinalHeight);
|
|
73512
|
+
|
|
73513
|
+
if(maxSpaceW) {
|
|
73514
|
+
var rW = (ml + mr) / maxSpaceW;
|
|
73515
|
+
if(rW > 1) {
|
|
73516
|
+
ml /= rW;
|
|
73517
|
+
mr /= rW;
|
|
73518
|
+
}
|
|
73357
73519
|
}
|
|
73358
73520
|
|
|
73359
|
-
|
|
73360
|
-
|
|
73361
|
-
|
|
73362
|
-
|
|
73521
|
+
if(maxSpaceH) {
|
|
73522
|
+
var rH = (mb + mt) / maxSpaceH;
|
|
73523
|
+
if(rH > 1) {
|
|
73524
|
+
mb /= rH;
|
|
73525
|
+
mt /= rH;
|
|
73526
|
+
}
|
|
73363
73527
|
}
|
|
73364
73528
|
|
|
73365
73529
|
gs.l = Math.round(ml);
|
|
@@ -74717,7 +74881,7 @@ plots.cleanBasePlot = function(desiredType, newFullData, newFullLayout, oldFullD
|
|
|
74717
74881
|
}
|
|
74718
74882
|
};
|
|
74719
74883
|
|
|
74720
|
-
},{"../components/color":
|
|
74884
|
+
},{"../components/color":105,"../constants/numerical":212,"../lib":233,"../plot_api/plot_schema":267,"../plot_api/plot_template":268,"../plots/get_data":309,"../registry":326,"./animation_attributes":273,"./attributes":275,"./cartesian/axis_ids":282,"./cartesian/handle_outline":289,"./command":305,"./font_attributes":307,"./frame_attributes":308,"./layout_attributes":311,"d3":21,"d3-time-format":19,"fast-isnumeric":23}],314:[function(_dereq_,module,exports){
|
|
74721
74885
|
/**
|
|
74722
74886
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74723
74887
|
* All rights reserved.
|
|
@@ -74761,7 +74925,7 @@ module.exports = {
|
|
|
74761
74925
|
}
|
|
74762
74926
|
};
|
|
74763
74927
|
|
|
74764
|
-
},{"../../../lib/extend":
|
|
74928
|
+
},{"../../../lib/extend":227,"../../../traces/scatter/attributes":447}],315:[function(_dereq_,module,exports){
|
|
74765
74929
|
/**
|
|
74766
74930
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74767
74931
|
* All rights reserved.
|
|
@@ -74883,7 +75047,7 @@ module.exports = overrideAll({
|
|
|
74883
75047
|
}
|
|
74884
75048
|
}, 'plot', 'nested');
|
|
74885
75049
|
|
|
74886
|
-
},{"../../../lib/extend":
|
|
75050
|
+
},{"../../../lib/extend":227,"../../../plot_api/edit_types":261,"../../cartesian/layout_attributes":293}],316:[function(_dereq_,module,exports){
|
|
74887
75051
|
/**
|
|
74888
75052
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74889
75053
|
* All rights reserved.
|
|
@@ -74898,7 +75062,7 @@ var Polar = module.exports = _dereq_('./micropolar');
|
|
|
74898
75062
|
|
|
74899
75063
|
Polar.manager = _dereq_('./micropolar_manager');
|
|
74900
75064
|
|
|
74901
|
-
},{"./micropolar":
|
|
75065
|
+
},{"./micropolar":317,"./micropolar_manager":318}],317:[function(_dereq_,module,exports){
|
|
74902
75066
|
/**
|
|
74903
75067
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74904
75068
|
* All rights reserved.
|
|
@@ -76318,7 +76482,7 @@ var µ = module.exports = { version: '0.2.2' };
|
|
|
76318
76482
|
return exports;
|
|
76319
76483
|
};
|
|
76320
76484
|
|
|
76321
|
-
},{"../../../constants/alignment":
|
|
76485
|
+
},{"../../../constants/alignment":207,"../../../lib":233,"d3":21}],318:[function(_dereq_,module,exports){
|
|
76322
76486
|
/**
|
|
76323
76487
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76324
76488
|
* All rights reserved.
|
|
@@ -76404,7 +76568,7 @@ manager.fillLayout = function(_gd) {
|
|
|
76404
76568
|
_gd._fullLayout = extendDeepAll(dflts, _gd.layout);
|
|
76405
76569
|
};
|
|
76406
76570
|
|
|
76407
|
-
},{"../../../components/color":
|
|
76571
|
+
},{"../../../components/color":105,"../../../lib":233,"./micropolar":317,"./undo_manager":319,"d3":21}],319:[function(_dereq_,module,exports){
|
|
76408
76572
|
/**
|
|
76409
76573
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76410
76574
|
* All rights reserved.
|
|
@@ -76470,7 +76634,7 @@ module.exports = function UndoManager() {
|
|
|
76470
76634
|
};
|
|
76471
76635
|
};
|
|
76472
76636
|
|
|
76473
|
-
},{}],
|
|
76637
|
+
},{}],320:[function(_dereq_,module,exports){
|
|
76474
76638
|
/**
|
|
76475
76639
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76476
76640
|
* All rights reserved.
|
|
@@ -76555,7 +76719,7 @@ module.exports = function handleSubplotDefaults(layoutIn, layoutOut, fullData, o
|
|
|
76555
76719
|
}
|
|
76556
76720
|
};
|
|
76557
76721
|
|
|
76558
|
-
},{"../lib":
|
|
76722
|
+
},{"../lib":233,"../plot_api/plot_template":268,"./domain":306}],321:[function(_dereq_,module,exports){
|
|
76559
76723
|
/**
|
|
76560
76724
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76561
76725
|
* All rights reserved.
|
|
@@ -76638,7 +76802,7 @@ exports.texttemplateAttrs = function(opts, extra) {
|
|
|
76638
76802
|
return texttemplate;
|
|
76639
76803
|
};
|
|
76640
76804
|
|
|
76641
|
-
},{"../constants/docs":
|
|
76805
|
+
},{"../constants/docs":209}],322:[function(_dereq_,module,exports){
|
|
76642
76806
|
/**
|
|
76643
76807
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76644
76808
|
* All rights reserved.
|
|
@@ -76722,7 +76886,7 @@ exports.clean = function(newFullData, newFullLayout, oldFullData, oldFullLayout)
|
|
|
76722
76886
|
}
|
|
76723
76887
|
};
|
|
76724
76888
|
|
|
76725
|
-
},{"../../lib":
|
|
76889
|
+
},{"../../lib":233,"../../plots/get_data":309,"./layout_attributes":323,"./layout_defaults":324,"./ternary":325}],323:[function(_dereq_,module,exports){
|
|
76726
76890
|
/**
|
|
76727
76891
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76728
76892
|
* All rights reserved.
|
|
@@ -76830,7 +76994,7 @@ attrs.aaxis.uirevision = attrs.baxis.uirevision = attrs.caxis.uirevision = {
|
|
|
76830
76994
|
|
|
76831
76995
|
};
|
|
76832
76996
|
|
|
76833
|
-
},{"../../components/color/attributes":
|
|
76997
|
+
},{"../../components/color/attributes":104,"../../lib/extend":227,"../../plot_api/edit_types":261,"../cartesian/layout_attributes":293,"../domain":306}],324:[function(_dereq_,module,exports){
|
|
76834
76998
|
/**
|
|
76835
76999
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76836
77000
|
* All rights reserved.
|
|
@@ -76962,7 +77126,7 @@ function handleAxisDefaults(containerIn, containerOut, options, ternaryLayoutOut
|
|
|
76962
77126
|
coerce('layer');
|
|
76963
77127
|
}
|
|
76964
77128
|
|
|
76965
|
-
},{"../../components/color":
|
|
77129
|
+
},{"../../components/color":105,"../../lib":233,"../../plot_api/plot_template":268,"../cartesian/line_grid_defaults":295,"../cartesian/tick_label_defaults":300,"../cartesian/tick_mark_defaults":301,"../cartesian/tick_value_defaults":302,"../subplot_defaults":320,"./layout_attributes":323}],325:[function(_dereq_,module,exports){
|
|
76966
77130
|
/**
|
|
76967
77131
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76968
77132
|
* All rights reserved.
|
|
@@ -77743,7 +77907,7 @@ function removeZoombox(gd) {
|
|
|
77743
77907
|
.remove();
|
|
77744
77908
|
}
|
|
77745
77909
|
|
|
77746
|
-
},{"../../components/color":
|
|
77910
|
+
},{"../../components/color":105,"../../components/dragelement":124,"../../components/dragelement/helpers":123,"../../components/drawing":127,"../../components/fx":145,"../../components/titles":200,"../../lib":233,"../../lib/extend":227,"../../registry":326,"../cartesian/axes":279,"../cartesian/constants":285,"../cartesian/select":298,"../cartesian/set_convert":299,"../plots":313,"d3":21,"tinycolor2":88}],326:[function(_dereq_,module,exports){
|
|
77747
77911
|
/**
|
|
77748
77912
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77749
77913
|
* All rights reserved.
|
|
@@ -78209,7 +78373,7 @@ function getTraceType(traceType) {
|
|
|
78209
78373
|
return traceType;
|
|
78210
78374
|
}
|
|
78211
78375
|
|
|
78212
|
-
},{"./lib/dom":
|
|
78376
|
+
},{"./lib/dom":225,"./lib/extend":227,"./lib/is_plain_object":234,"./lib/loggers":237,"./lib/noop":242,"./lib/push_unique":247,"./plots/attributes":275,"./plots/layout_attributes":311}],327:[function(_dereq_,module,exports){
|
|
78213
78377
|
/**
|
|
78214
78378
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78215
78379
|
* All rights reserved.
|
|
@@ -78382,7 +78546,7 @@ module.exports = function clonePlot(graphObj, options) {
|
|
|
78382
78546
|
return plotTile;
|
|
78383
78547
|
};
|
|
78384
78548
|
|
|
78385
|
-
},{"../lib":
|
|
78549
|
+
},{"../lib":233,"../registry":326}],328:[function(_dereq_,module,exports){
|
|
78386
78550
|
/**
|
|
78387
78551
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78388
78552
|
* All rights reserved.
|
|
@@ -78454,7 +78618,7 @@ function downloadImage(gd, opts) {
|
|
|
78454
78618
|
|
|
78455
78619
|
module.exports = downloadImage;
|
|
78456
78620
|
|
|
78457
|
-
},{"../lib":
|
|
78621
|
+
},{"../lib":233,"../plot_api/to_image":271,"./filesaver":329,"./helpers":330}],329:[function(_dereq_,module,exports){
|
|
78458
78622
|
/**
|
|
78459
78623
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78460
78624
|
* All rights reserved.
|
|
@@ -78534,7 +78698,7 @@ function fileSaver(url, name, format) {
|
|
|
78534
78698
|
|
|
78535
78699
|
module.exports = fileSaver;
|
|
78536
78700
|
|
|
78537
|
-
},{"../lib":
|
|
78701
|
+
},{"../lib":233,"./helpers":330}],330:[function(_dereq_,module,exports){
|
|
78538
78702
|
/**
|
|
78539
78703
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78540
78704
|
* All rights reserved.
|
|
@@ -78617,7 +78781,7 @@ exports.IMAGE_URL_PREFIX = /^data:image\/\w+;base64,/;
|
|
|
78617
78781
|
|
|
78618
78782
|
exports.MSG_IE_BAD_FORMAT = 'Sorry IE does not support downloading from canvas. Try {format:\'svg\'} instead.';
|
|
78619
78783
|
|
|
78620
|
-
},{"../registry":
|
|
78784
|
+
},{"../registry":326}],331:[function(_dereq_,module,exports){
|
|
78621
78785
|
/**
|
|
78622
78786
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78623
78787
|
* All rights reserved.
|
|
@@ -78643,7 +78807,7 @@ var Snapshot = {
|
|
|
78643
78807
|
|
|
78644
78808
|
module.exports = Snapshot;
|
|
78645
78809
|
|
|
78646
|
-
},{"./cloneplot":
|
|
78810
|
+
},{"./cloneplot":327,"./download":328,"./helpers":330,"./svgtoimg":332,"./toimage":333,"./tosvg":334}],332:[function(_dereq_,module,exports){
|
|
78647
78811
|
/**
|
|
78648
78812
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78649
78813
|
* All rights reserved.
|
|
@@ -78770,7 +78934,7 @@ function svgToImg(opts) {
|
|
|
78770
78934
|
|
|
78771
78935
|
module.exports = svgToImg;
|
|
78772
78936
|
|
|
78773
|
-
},{"../lib":
|
|
78937
|
+
},{"../lib":233,"./helpers":330,"events":17}],333:[function(_dereq_,module,exports){
|
|
78774
78938
|
/**
|
|
78775
78939
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78776
78940
|
* All rights reserved.
|
|
@@ -78847,7 +79011,7 @@ function toImage(gd, opts) {
|
|
|
78847
79011
|
|
|
78848
79012
|
module.exports = toImage;
|
|
78849
79013
|
|
|
78850
|
-
},{"../lib":
|
|
79014
|
+
},{"../lib":233,"../registry":326,"./cloneplot":327,"./helpers":330,"./svgtoimg":332,"./tosvg":334,"events":17}],334:[function(_dereq_,module,exports){
|
|
78851
79015
|
/**
|
|
78852
79016
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78853
79017
|
* All rights reserved.
|
|
@@ -79036,7 +79200,7 @@ module.exports = function toSVG(gd, format, scale) {
|
|
|
79036
79200
|
return s;
|
|
79037
79201
|
};
|
|
79038
79202
|
|
|
79039
|
-
},{"../components/color":
|
|
79203
|
+
},{"../components/color":105,"../components/drawing":127,"../constants/xmlns_namespaces":213,"../lib":233,"d3":21}],335:[function(_dereq_,module,exports){
|
|
79040
79204
|
/**
|
|
79041
79205
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79042
79206
|
* All rights reserved.
|
|
@@ -79069,7 +79233,7 @@ module.exports = function arraysToCalcdata(cd, trace) {
|
|
|
79069
79233
|
}
|
|
79070
79234
|
};
|
|
79071
79235
|
|
|
79072
|
-
},{"../../lib":
|
|
79236
|
+
},{"../../lib":233}],336:[function(_dereq_,module,exports){
|
|
79073
79237
|
/**
|
|
79074
79238
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79075
79239
|
* All rights reserved.
|
|
@@ -79285,7 +79449,7 @@ module.exports = {
|
|
|
79285
79449
|
}
|
|
79286
79450
|
};
|
|
79287
79451
|
|
|
79288
|
-
},{"../../components/colorscale/attributes":
|
|
79452
|
+
},{"../../components/colorscale/attributes":112,"../../lib/extend":227,"../../plots/font_attributes":307,"../../plots/template_attributes":321,"../scatter/attributes":447,"./constants":338}],337:[function(_dereq_,module,exports){
|
|
79289
79453
|
/**
|
|
79290
79454
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79291
79455
|
* All rights reserved.
|
|
@@ -79364,7 +79528,7 @@ module.exports = function calc(gd, trace) {
|
|
|
79364
79528
|
return cd;
|
|
79365
79529
|
};
|
|
79366
79530
|
|
|
79367
|
-
},{"../../components/colorscale/calc":
|
|
79531
|
+
},{"../../components/colorscale/calc":113,"../../components/colorscale/helpers":116,"../../plots/cartesian/align_period":276,"../../plots/cartesian/axes":279,"../scatter/calc_selection":449,"./arrays_to_calcdata":335}],338:[function(_dereq_,module,exports){
|
|
79368
79532
|
/**
|
|
79369
79533
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79370
79534
|
* All rights reserved.
|
|
@@ -79386,7 +79550,7 @@ module.exports = {
|
|
|
79386
79550
|
eventDataKeys: ['value', 'label']
|
|
79387
79551
|
};
|
|
79388
79552
|
|
|
79389
|
-
},{}],
|
|
79553
|
+
},{}],339:[function(_dereq_,module,exports){
|
|
79390
79554
|
/**
|
|
79391
79555
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79392
79556
|
* All rights reserved.
|
|
@@ -80166,7 +80330,7 @@ module.exports = {
|
|
|
80166
80330
|
setGroupPositions: setGroupPositions
|
|
80167
80331
|
};
|
|
80168
80332
|
|
|
80169
|
-
},{"../../constants/numerical":
|
|
80333
|
+
},{"../../constants/numerical":212,"../../lib":233,"../../plots/cartesian/axes":279,"../../plots/cartesian/constraints":286,"../../registry":326,"./sieve.js":349,"fast-isnumeric":23}],340:[function(_dereq_,module,exports){
|
|
80170
80334
|
/**
|
|
80171
80335
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80172
80336
|
* All rights reserved.
|
|
@@ -80351,7 +80515,7 @@ module.exports = {
|
|
|
80351
80515
|
handleText: handleText
|
|
80352
80516
|
};
|
|
80353
80517
|
|
|
80354
|
-
},{"../../components/color":
|
|
80518
|
+
},{"../../components/color":105,"../../lib":233,"../../plots/cartesian/constraints":286,"../../registry":326,"../scatter/period_defaults":467,"../scatter/xy_defaults":474,"./attributes":336,"./style_defaults":351}],341:[function(_dereq_,module,exports){
|
|
80355
80519
|
/**
|
|
80356
80520
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80357
80521
|
* All rights reserved.
|
|
@@ -80380,7 +80544,7 @@ module.exports = function eventData(out, pt, trace) {
|
|
|
80380
80544
|
return out;
|
|
80381
80545
|
};
|
|
80382
80546
|
|
|
80383
|
-
},{}],
|
|
80547
|
+
},{}],342:[function(_dereq_,module,exports){
|
|
80384
80548
|
/**
|
|
80385
80549
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80386
80550
|
* All rights reserved.
|
|
@@ -80458,7 +80622,7 @@ exports.getLineWidth = function(trace, di) {
|
|
|
80458
80622
|
return w;
|
|
80459
80623
|
};
|
|
80460
80624
|
|
|
80461
|
-
},{"../../lib":
|
|
80625
|
+
},{"../../lib":233,"fast-isnumeric":23,"tinycolor2":88}],343:[function(_dereq_,module,exports){
|
|
80462
80626
|
/**
|
|
80463
80627
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80464
80628
|
* All rights reserved.
|
|
@@ -80654,7 +80818,7 @@ module.exports = {
|
|
|
80654
80818
|
getTraceColor: getTraceColor
|
|
80655
80819
|
};
|
|
80656
80820
|
|
|
80657
|
-
},{"../../components/color":
|
|
80821
|
+
},{"../../components/color":105,"../../components/fx":145,"../../constants/numerical":212,"../../lib":233,"../../plots/cartesian/axes":279,"../../registry":326,"./helpers":342}],344:[function(_dereq_,module,exports){
|
|
80658
80822
|
/**
|
|
80659
80823
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80660
80824
|
* All rights reserved.
|
|
@@ -80692,7 +80856,7 @@ module.exports = {
|
|
|
80692
80856
|
}
|
|
80693
80857
|
};
|
|
80694
80858
|
|
|
80695
|
-
},{"../../plots/cartesian":
|
|
80859
|
+
},{"../../plots/cartesian":292,"../scatter/marker_colorbar":465,"./arrays_to_calcdata":335,"./attributes":336,"./calc":337,"./cross_trace_calc":339,"./defaults":340,"./event_data":341,"./hover":343,"./layout_attributes":345,"./layout_defaults":346,"./plot":347,"./select":348,"./style":350}],345:[function(_dereq_,module,exports){
|
|
80696
80860
|
/**
|
|
80697
80861
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80698
80862
|
* All rights reserved.
|
|
@@ -80740,7 +80904,7 @@ module.exports = {
|
|
|
80740
80904
|
}
|
|
80741
80905
|
};
|
|
80742
80906
|
|
|
80743
|
-
},{}],
|
|
80907
|
+
},{}],346:[function(_dereq_,module,exports){
|
|
80744
80908
|
/**
|
|
80745
80909
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80746
80910
|
* All rights reserved.
|
|
@@ -80800,7 +80964,7 @@ module.exports = function(layoutIn, layoutOut, fullData) {
|
|
|
80800
80964
|
coerce('bargroupgap');
|
|
80801
80965
|
};
|
|
80802
80966
|
|
|
80803
|
-
},{"../../lib":
|
|
80967
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"../../registry":326,"./layout_attributes":345}],347:[function(_dereq_,module,exports){
|
|
80804
80968
|
/**
|
|
80805
80969
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80806
80970
|
* All rights reserved.
|
|
@@ -81585,7 +81749,7 @@ module.exports = {
|
|
|
81585
81749
|
toMoveInsideBar: toMoveInsideBar
|
|
81586
81750
|
};
|
|
81587
81751
|
|
|
81588
|
-
},{"../../components/color":
|
|
81752
|
+
},{"../../components/color":105,"../../components/drawing":127,"../../components/fx/helpers":141,"../../lib":233,"../../lib/svg_text_utils":255,"../../plots/cartesian/axes":279,"../../registry":326,"./attributes":336,"./constants":338,"./helpers":342,"./style":350,"./uniform_text":352,"d3":21,"fast-isnumeric":23}],348:[function(_dereq_,module,exports){
|
|
81589
81753
|
/**
|
|
81590
81754
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81591
81755
|
* All rights reserved.
|
|
@@ -81649,7 +81813,7 @@ function getCentroid(d, xa, ya, isHorizontal, isFunnel) {
|
|
|
81649
81813
|
}
|
|
81650
81814
|
}
|
|
81651
81815
|
|
|
81652
|
-
},{}],
|
|
81816
|
+
},{}],349:[function(_dereq_,module,exports){
|
|
81653
81817
|
/**
|
|
81654
81818
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81655
81819
|
* All rights reserved.
|
|
@@ -81763,7 +81927,7 @@ Sieve.prototype.getLabel = function getLabel(position, value) {
|
|
|
81763
81927
|
return prefix + label;
|
|
81764
81928
|
};
|
|
81765
81929
|
|
|
81766
|
-
},{"../../constants/numerical":
|
|
81930
|
+
},{"../../constants/numerical":212,"../../lib":233}],350:[function(_dereq_,module,exports){
|
|
81767
81931
|
/**
|
|
81768
81932
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81769
81933
|
* All rights reserved.
|
|
@@ -81945,7 +82109,7 @@ module.exports = {
|
|
|
81945
82109
|
resizeText: resizeText
|
|
81946
82110
|
};
|
|
81947
82111
|
|
|
81948
|
-
},{"../../components/color":
|
|
82112
|
+
},{"../../components/color":105,"../../components/drawing":127,"../../lib":233,"../../registry":326,"./attributes":336,"./helpers":342,"./uniform_text":352,"d3":21}],351:[function(_dereq_,module,exports){
|
|
81949
82113
|
/**
|
|
81950
82114
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81951
82115
|
* All rights reserved.
|
|
@@ -81983,7 +82147,7 @@ module.exports = function handleStyleDefaults(traceIn, traceOut, coerce, default
|
|
|
81983
82147
|
coerce('unselected.marker.color');
|
|
81984
82148
|
};
|
|
81985
82149
|
|
|
81986
|
-
},{"../../components/color":
|
|
82150
|
+
},{"../../components/color":105,"../../components/colorscale/defaults":115,"../../components/colorscale/helpers":116}],352:[function(_dereq_,module,exports){
|
|
81987
82151
|
/**
|
|
81988
82152
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81989
82153
|
* All rights reserved.
|
|
@@ -82069,7 +82233,7 @@ module.exports = {
|
|
|
82069
82233
|
resizeText: resizeText
|
|
82070
82234
|
};
|
|
82071
82235
|
|
|
82072
|
-
},{"../../lib":
|
|
82236
|
+
},{"../../lib":233,"d3":21}],353:[function(_dereq_,module,exports){
|
|
82073
82237
|
/**
|
|
82074
82238
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82075
82239
|
* All rights reserved.
|
|
@@ -82372,7 +82536,7 @@ module.exports = {
|
|
|
82372
82536
|
}
|
|
82373
82537
|
};
|
|
82374
82538
|
|
|
82375
|
-
},{"../../components/color/attributes":
|
|
82539
|
+
},{"../../components/color/attributes":104,"../../lib/extend":227,"../../plots/template_attributes":321,"../bar/attributes":336,"../scatter/attributes":447}],354:[function(_dereq_,module,exports){
|
|
82376
82540
|
/**
|
|
82377
82541
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82378
82542
|
* All rights reserved.
|
|
@@ -82826,7 +82990,7 @@ function computeNotchSpan(cdi, N) {
|
|
|
82826
82990
|
return 1.57 * (cdi.q3 - cdi.q1) / Math.sqrt(N);
|
|
82827
82991
|
}
|
|
82828
82992
|
|
|
82829
|
-
},{"../../constants/numerical":
|
|
82993
|
+
},{"../../constants/numerical":212,"../../lib":233,"../../plots/cartesian/align_period":276,"../../plots/cartesian/axes":279,"fast-isnumeric":23}],355:[function(_dereq_,module,exports){
|
|
82830
82994
|
/**
|
|
82831
82995
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82832
82996
|
* All rights reserved.
|
|
@@ -83058,7 +83222,7 @@ module.exports = {
|
|
|
83058
83222
|
setPositionOffset: setPositionOffset
|
|
83059
83223
|
};
|
|
83060
83224
|
|
|
83061
|
-
},{"../../lib":
|
|
83225
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"../../plots/cartesian/constraints":286}],356:[function(_dereq_,module,exports){
|
|
83062
83226
|
/**
|
|
83063
83227
|
* Copyright 2012-2020, Plotly, Inc.
|
|
83064
83228
|
* All rights reserved.
|
|
@@ -83374,7 +83538,7 @@ module.exports = {
|
|
|
83374
83538
|
handlePointsDefaults: handlePointsDefaults
|
|
83375
83539
|
};
|
|
83376
83540
|
|
|
83377
|
-
},{"../../components/color":
|
|
83541
|
+
},{"../../components/color":105,"../../lib":233,"../../plots/cartesian/axis_autotype":280,"../../registry":326,"../bar/defaults":340,"../scatter/period_defaults":467,"./attributes":353}],357:[function(_dereq_,module,exports){
|
|
83378
83542
|
/**
|
|
83379
83543
|
* Copyright 2012-2020, Plotly, Inc.
|
|
83380
83544
|
* All rights reserved.
|
|
@@ -83399,7 +83563,7 @@ module.exports = function eventData(out, pt) {
|
|
|
83399
83563
|
return out;
|
|
83400
83564
|
};
|
|
83401
83565
|
|
|
83402
|
-
},{}],
|
|
83566
|
+
},{}],358:[function(_dereq_,module,exports){
|
|
83403
83567
|
/**
|
|
83404
83568
|
* Copyright 2012-2020, Plotly, Inc.
|
|
83405
83569
|
* All rights reserved.
|
|
@@ -83686,7 +83850,7 @@ module.exports = {
|
|
|
83686
83850
|
hoverOnPoints: hoverOnPoints
|
|
83687
83851
|
};
|
|
83688
83852
|
|
|
83689
|
-
},{"../../components/color":
|
|
83853
|
+
},{"../../components/color":105,"../../components/fx":145,"../../lib":233,"../../plots/cartesian/axes":279}],359:[function(_dereq_,module,exports){
|
|
83690
83854
|
/**
|
|
83691
83855
|
* Copyright 2012-2020, Plotly, Inc.
|
|
83692
83856
|
* All rights reserved.
|
|
@@ -83721,7 +83885,7 @@ module.exports = {
|
|
|
83721
83885
|
}
|
|
83722
83886
|
};
|
|
83723
83887
|
|
|
83724
|
-
},{"../../plots/cartesian":
|
|
83888
|
+
},{"../../plots/cartesian":292,"./attributes":353,"./calc":354,"./cross_trace_calc":355,"./defaults":356,"./event_data":357,"./hover":358,"./layout_attributes":360,"./layout_defaults":361,"./plot":362,"./select":363,"./style":364}],360:[function(_dereq_,module,exports){
|
|
83725
83889
|
/**
|
|
83726
83890
|
* Copyright 2012-2020, Plotly, Inc.
|
|
83727
83891
|
* All rights reserved.
|
|
@@ -83762,7 +83926,7 @@ module.exports = {
|
|
|
83762
83926
|
}
|
|
83763
83927
|
};
|
|
83764
83928
|
|
|
83765
|
-
},{}],
|
|
83929
|
+
},{}],361:[function(_dereq_,module,exports){
|
|
83766
83930
|
/**
|
|
83767
83931
|
* Copyright 2012-2020, Plotly, Inc.
|
|
83768
83932
|
* All rights reserved.
|
|
@@ -83808,7 +83972,7 @@ module.exports = {
|
|
|
83808
83972
|
_supply: _supply
|
|
83809
83973
|
};
|
|
83810
83974
|
|
|
83811
|
-
},{"../../lib":
|
|
83975
|
+
},{"../../lib":233,"../../registry":326,"./layout_attributes":360}],362:[function(_dereq_,module,exports){
|
|
83812
83976
|
/**
|
|
83813
83977
|
* Copyright 2012-2020, Plotly, Inc.
|
|
83814
83978
|
* All rights reserved.
|
|
@@ -84158,7 +84322,7 @@ module.exports = {
|
|
|
84158
84322
|
plotBoxMean: plotBoxMean
|
|
84159
84323
|
};
|
|
84160
84324
|
|
|
84161
|
-
},{"../../components/drawing":
|
|
84325
|
+
},{"../../components/drawing":127,"../../lib":233,"d3":21}],363:[function(_dereq_,module,exports){
|
|
84162
84326
|
/**
|
|
84163
84327
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84164
84328
|
* All rights reserved.
|
|
@@ -84207,7 +84371,7 @@ module.exports = function selectPoints(searchInfo, selectionTester) {
|
|
|
84207
84371
|
return selection;
|
|
84208
84372
|
};
|
|
84209
84373
|
|
|
84210
|
-
},{}],
|
|
84374
|
+
},{}],364:[function(_dereq_,module,exports){
|
|
84211
84375
|
/**
|
|
84212
84376
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84213
84377
|
* All rights reserved.
|
|
@@ -84281,7 +84445,7 @@ module.exports = {
|
|
|
84281
84445
|
styleOnSelect: styleOnSelect
|
|
84282
84446
|
};
|
|
84283
84447
|
|
|
84284
|
-
},{"../../components/color":
|
|
84448
|
+
},{"../../components/color":105,"../../components/drawing":127,"d3":21}],365:[function(_dereq_,module,exports){
|
|
84285
84449
|
/**
|
|
84286
84450
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84287
84451
|
* All rights reserved.
|
|
@@ -84476,7 +84640,7 @@ module.exports = extendFlat({
|
|
|
84476
84640
|
})
|
|
84477
84641
|
);
|
|
84478
84642
|
|
|
84479
|
-
},{"../../components/colorscale/attributes":
|
|
84643
|
+
},{"../../components/colorscale/attributes":112,"../../components/drawing/attributes":126,"../../constants/docs":209,"../../constants/filter_ops":210,"../../lib/extend":227,"../../plots/font_attributes":307,"../heatmap/attributes":387,"../scatter/attributes":447}],366:[function(_dereq_,module,exports){
|
|
84480
84644
|
/**
|
|
84481
84645
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84482
84646
|
* All rights reserved.
|
|
@@ -84529,7 +84693,7 @@ module.exports = function calc(gd, trace) {
|
|
|
84529
84693
|
return cd;
|
|
84530
84694
|
};
|
|
84531
84695
|
|
|
84532
|
-
},{"../../components/colorscale":
|
|
84696
|
+
},{"../../components/colorscale":117,"../heatmap/calc":388,"./end_plus":376,"./set_contours":384}],367:[function(_dereq_,module,exports){
|
|
84533
84697
|
/**
|
|
84534
84698
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84535
84699
|
* All rights reserved.
|
|
@@ -84619,7 +84783,7 @@ module.exports = function(pathinfo, contours) {
|
|
|
84619
84783
|
}
|
|
84620
84784
|
};
|
|
84621
84785
|
|
|
84622
|
-
},{}],
|
|
84786
|
+
},{}],368:[function(_dereq_,module,exports){
|
|
84623
84787
|
/**
|
|
84624
84788
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84625
84789
|
* All rights reserved.
|
|
@@ -84670,7 +84834,7 @@ module.exports = {
|
|
|
84670
84834
|
calc: calc
|
|
84671
84835
|
};
|
|
84672
84836
|
|
|
84673
|
-
},{"../../components/colorscale":
|
|
84837
|
+
},{"../../components/colorscale":117,"./end_plus":376,"./make_color_map":381}],369:[function(_dereq_,module,exports){
|
|
84674
84838
|
/**
|
|
84675
84839
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84676
84840
|
* All rights reserved.
|
|
@@ -84748,7 +84912,7 @@ module.exports = {
|
|
|
84748
84912
|
}
|
|
84749
84913
|
};
|
|
84750
84914
|
|
|
84751
|
-
},{}],
|
|
84915
|
+
},{}],370:[function(_dereq_,module,exports){
|
|
84752
84916
|
/**
|
|
84753
84917
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84754
84918
|
* All rights reserved.
|
|
@@ -84842,7 +85006,7 @@ function handleConstraintValueDefaults(coerce, contours) {
|
|
|
84842
85006
|
}
|
|
84843
85007
|
}
|
|
84844
85008
|
|
|
84845
|
-
},{"../../components/color":
|
|
85009
|
+
},{"../../components/color":105,"../../constants/filter_ops":210,"./label_defaults":380,"fast-isnumeric":23}],371:[function(_dereq_,module,exports){
|
|
84846
85010
|
/**
|
|
84847
85011
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84848
85012
|
* All rights reserved.
|
|
@@ -84921,7 +85085,7 @@ function makeInequalitySettings(operation) {
|
|
|
84921
85085
|
};
|
|
84922
85086
|
}
|
|
84923
85087
|
|
|
84924
|
-
},{"../../constants/filter_ops":
|
|
85088
|
+
},{"../../constants/filter_ops":210,"fast-isnumeric":23}],372:[function(_dereq_,module,exports){
|
|
84925
85089
|
/**
|
|
84926
85090
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84927
85091
|
* All rights reserved.
|
|
@@ -84950,7 +85114,7 @@ module.exports = function handleContourDefaults(traceIn, traceOut, coerce, coerc
|
|
|
84950
85114
|
if(autoContour || !contourSize) coerce('ncontours');
|
|
84951
85115
|
};
|
|
84952
85116
|
|
|
84953
|
-
},{}],
|
|
85117
|
+
},{}],373:[function(_dereq_,module,exports){
|
|
84954
85118
|
/**
|
|
84955
85119
|
* Copyright 2012-2020, Plotly, Inc.
|
|
84956
85120
|
* All rights reserved.
|
|
@@ -85050,7 +85214,7 @@ function copyPathinfo(pi) {
|
|
|
85050
85214
|
});
|
|
85051
85215
|
}
|
|
85052
85216
|
|
|
85053
|
-
},{"../../lib":
|
|
85217
|
+
},{"../../lib":233}],374:[function(_dereq_,module,exports){
|
|
85054
85218
|
/**
|
|
85055
85219
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85056
85220
|
* All rights reserved.
|
|
@@ -85104,7 +85268,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
85104
85268
|
}
|
|
85105
85269
|
};
|
|
85106
85270
|
|
|
85107
|
-
},{"../../lib":
|
|
85271
|
+
},{"../../lib":233,"../heatmap/xyz_defaults":401,"../scatter/period_defaults":467,"./attributes":365,"./constraint_defaults":370,"./contours_defaults":372,"./style_defaults":386}],375:[function(_dereq_,module,exports){
|
|
85108
85272
|
/**
|
|
85109
85273
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85110
85274
|
* All rights reserved.
|
|
@@ -85168,7 +85332,7 @@ module.exports = function emptyPathinfo(contours, plotinfo, cd0) {
|
|
|
85168
85332
|
return pathinfo;
|
|
85169
85333
|
};
|
|
85170
85334
|
|
|
85171
|
-
},{"../../lib":
|
|
85335
|
+
},{"../../lib":233,"./constraint_mapping":371,"./end_plus":376}],376:[function(_dereq_,module,exports){
|
|
85172
85336
|
/**
|
|
85173
85337
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85174
85338
|
* All rights reserved.
|
|
@@ -85188,7 +85352,7 @@ module.exports = function endPlus(contours) {
|
|
|
85188
85352
|
return contours.end + contours.size / 1e6;
|
|
85189
85353
|
};
|
|
85190
85354
|
|
|
85191
|
-
},{}],
|
|
85355
|
+
},{}],377:[function(_dereq_,module,exports){
|
|
85192
85356
|
/**
|
|
85193
85357
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85194
85358
|
* All rights reserved.
|
|
@@ -85482,7 +85646,7 @@ function getInterpPx(pi, loc, step) {
|
|
|
85482
85646
|
}
|
|
85483
85647
|
}
|
|
85484
85648
|
|
|
85485
|
-
},{"../../lib":
|
|
85649
|
+
},{"../../lib":233,"./constants":369}],378:[function(_dereq_,module,exports){
|
|
85486
85650
|
/**
|
|
85487
85651
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85488
85652
|
* All rights reserved.
|
|
@@ -85517,7 +85681,7 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode, hoverLay
|
|
|
85517
85681
|
return hoverData;
|
|
85518
85682
|
};
|
|
85519
85683
|
|
|
85520
|
-
},{"../../components/color":
|
|
85684
|
+
},{"../../components/color":105,"../heatmap/hover":394}],379:[function(_dereq_,module,exports){
|
|
85521
85685
|
/**
|
|
85522
85686
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85523
85687
|
* All rights reserved.
|
|
@@ -85546,7 +85710,7 @@ module.exports = {
|
|
|
85546
85710
|
}
|
|
85547
85711
|
};
|
|
85548
85712
|
|
|
85549
|
-
},{"../../plots/cartesian":
|
|
85713
|
+
},{"../../plots/cartesian":292,"./attributes":365,"./calc":366,"./colorbar":368,"./defaults":374,"./hover":378,"./plot":383,"./style":385}],380:[function(_dereq_,module,exports){
|
|
85550
85714
|
/**
|
|
85551
85715
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85552
85716
|
* All rights reserved.
|
|
@@ -85576,7 +85740,7 @@ module.exports = function handleLabelDefaults(coerce, layout, lineColor, opts) {
|
|
|
85576
85740
|
if(opts.hasHover !== false) coerce('zhoverformat');
|
|
85577
85741
|
};
|
|
85578
85742
|
|
|
85579
|
-
},{"../../lib":
|
|
85743
|
+
},{"../../lib":233}],381:[function(_dereq_,module,exports){
|
|
85580
85744
|
/**
|
|
85581
85745
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85582
85746
|
* All rights reserved.
|
|
@@ -85660,7 +85824,7 @@ module.exports = function makeColorMap(trace) {
|
|
|
85660
85824
|
);
|
|
85661
85825
|
};
|
|
85662
85826
|
|
|
85663
|
-
},{"../../components/colorscale":
|
|
85827
|
+
},{"../../components/colorscale":117,"./end_plus":376,"d3":21}],382:[function(_dereq_,module,exports){
|
|
85664
85828
|
/**
|
|
85665
85829
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85666
85830
|
* All rights reserved.
|
|
@@ -85752,7 +85916,7 @@ function getMarchingIndex(val, corners) {
|
|
|
85752
85916
|
return (mi === 15) ? 0 : mi;
|
|
85753
85917
|
}
|
|
85754
85918
|
|
|
85755
|
-
},{"./constants":
|
|
85919
|
+
},{"./constants":369}],383:[function(_dereq_,module,exports){
|
|
85756
85920
|
/**
|
|
85757
85921
|
* Copyright 2012-2020, Plotly, Inc.
|
|
85758
85922
|
* All rights reserved.
|
|
@@ -86443,7 +86607,7 @@ function makeClipMask(cd0) {
|
|
|
86443
86607
|
return z;
|
|
86444
86608
|
}
|
|
86445
86609
|
|
|
86446
|
-
},{"../../components/colorscale":
|
|
86610
|
+
},{"../../components/colorscale":117,"../../components/drawing":127,"../../lib":233,"../../lib/svg_text_utils":255,"../../plots/cartesian/axes":279,"../../plots/cartesian/set_convert":299,"../heatmap/plot":398,"./close_boundaries":367,"./constants":369,"./convert_to_constraints":373,"./empty_pathinfo":375,"./find_all_paths":377,"./make_crossings":382,"d3":21}],384:[function(_dereq_,module,exports){
|
|
86447
86611
|
/**
|
|
86448
86612
|
* Copyright 2012-2020, Plotly, Inc.
|
|
86449
86613
|
* All rights reserved.
|
|
@@ -86547,7 +86711,7 @@ function autoContours(start, end, ncontours) {
|
|
|
86547
86711
|
return dummyAx;
|
|
86548
86712
|
}
|
|
86549
86713
|
|
|
86550
|
-
},{"../../lib":
|
|
86714
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279}],385:[function(_dereq_,module,exports){
|
|
86551
86715
|
/**
|
|
86552
86716
|
* Copyright 2012-2020, Plotly, Inc.
|
|
86553
86717
|
* All rights reserved.
|
|
@@ -86628,7 +86792,7 @@ module.exports = function style(gd) {
|
|
|
86628
86792
|
heatmapStyle(gd);
|
|
86629
86793
|
};
|
|
86630
86794
|
|
|
86631
|
-
},{"../../components/drawing":
|
|
86795
|
+
},{"../../components/drawing":127,"../heatmap/style":399,"./make_color_map":381,"d3":21}],386:[function(_dereq_,module,exports){
|
|
86632
86796
|
/**
|
|
86633
86797
|
* Copyright 2012-2020, Plotly, Inc.
|
|
86634
86798
|
* All rights reserved.
|
|
@@ -86673,7 +86837,7 @@ module.exports = function handleStyleDefaults(traceIn, traceOut, coerce, layout,
|
|
|
86673
86837
|
handleLabelDefaults(coerce, layout, lineColor, opts);
|
|
86674
86838
|
};
|
|
86675
86839
|
|
|
86676
|
-
},{"../../components/colorscale/defaults":
|
|
86840
|
+
},{"../../components/colorscale/defaults":115,"./label_defaults":380}],387:[function(_dereq_,module,exports){
|
|
86677
86841
|
/**
|
|
86678
86842
|
* Copyright 2012-2020, Plotly, Inc.
|
|
86679
86843
|
* All rights reserved.
|
|
@@ -86795,7 +86959,7 @@ module.exports = extendFlat({
|
|
|
86795
86959
|
colorScaleAttrs('', {cLetter: 'z', autoColorDflt: false})
|
|
86796
86960
|
);
|
|
86797
86961
|
|
|
86798
|
-
},{"../../components/colorscale/attributes":
|
|
86962
|
+
},{"../../components/colorscale/attributes":112,"../../constants/docs":209,"../../lib/extend":227,"../../plots/attributes":275,"../../plots/template_attributes":321,"../scatter/attributes":447}],388:[function(_dereq_,module,exports){
|
|
86799
86963
|
/**
|
|
86800
86964
|
* Copyright 2012-2020, Plotly, Inc.
|
|
86801
86965
|
* All rights reserved.
|
|
@@ -87004,7 +87168,7 @@ function dropZonBreaks(x, y, z) {
|
|
|
87004
87168
|
return newZ;
|
|
87005
87169
|
}
|
|
87006
87170
|
|
|
87007
|
-
},{"../../components/colorscale/calc":
|
|
87171
|
+
},{"../../components/colorscale/calc":113,"../../constants/numerical":212,"../../lib":233,"../../plots/cartesian/align_period":276,"../../plots/cartesian/axes":279,"../../registry":326,"../histogram2d/calc":416,"./clean_2d_array":389,"./convert_column_xyz":391,"./find_empties":393,"./interp2d":396,"./make_bound_array":397}],389:[function(_dereq_,module,exports){
|
|
87008
87172
|
/**
|
|
87009
87173
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87010
87174
|
* All rights reserved.
|
|
@@ -87081,7 +87245,7 @@ module.exports = function clean2dArray(zOld, trace, xa, ya) {
|
|
|
87081
87245
|
return zNew;
|
|
87082
87246
|
};
|
|
87083
87247
|
|
|
87084
|
-
},{"../../constants/numerical":
|
|
87248
|
+
},{"../../constants/numerical":212,"../../lib":233,"fast-isnumeric":23}],390:[function(_dereq_,module,exports){
|
|
87085
87249
|
/**
|
|
87086
87250
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87087
87251
|
* All rights reserved.
|
|
@@ -87097,7 +87261,7 @@ module.exports = {
|
|
|
87097
87261
|
max: 'zmax'
|
|
87098
87262
|
};
|
|
87099
87263
|
|
|
87100
|
-
},{}],
|
|
87264
|
+
},{}],391:[function(_dereq_,module,exports){
|
|
87101
87265
|
/**
|
|
87102
87266
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87103
87267
|
* All rights reserved.
|
|
@@ -87187,7 +87351,7 @@ module.exports = function convertColumnData(trace, ax1, ax2, var1Name, var2Name,
|
|
|
87187
87351
|
trace._after2before = after2before;
|
|
87188
87352
|
};
|
|
87189
87353
|
|
|
87190
|
-
},{"../../constants/numerical":
|
|
87354
|
+
},{"../../constants/numerical":212,"../../lib":233,"../../plots/cartesian/align_period":276}],392:[function(_dereq_,module,exports){
|
|
87191
87355
|
/**
|
|
87192
87356
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87193
87357
|
* All rights reserved.
|
|
@@ -87233,7 +87397,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
87233
87397
|
colorscaleDefaults(traceIn, traceOut, layout, coerce, {prefix: '', cLetter: 'z'});
|
|
87234
87398
|
};
|
|
87235
87399
|
|
|
87236
|
-
},{"../../components/colorscale/defaults":
|
|
87400
|
+
},{"../../components/colorscale/defaults":115,"../../lib":233,"../scatter/period_defaults":467,"./attributes":387,"./style_defaults":400,"./xyz_defaults":401}],393:[function(_dereq_,module,exports){
|
|
87237
87401
|
/**
|
|
87238
87402
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87239
87403
|
* All rights reserved.
|
|
@@ -87338,7 +87502,7 @@ module.exports = function findEmpties(z) {
|
|
|
87338
87502
|
return empties.sort(function(a, b) { return b[2] - a[2]; });
|
|
87339
87503
|
};
|
|
87340
87504
|
|
|
87341
|
-
},{"../../lib":
|
|
87505
|
+
},{"../../lib":233}],394:[function(_dereq_,module,exports){
|
|
87342
87506
|
/**
|
|
87343
87507
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87344
87508
|
* All rights reserved.
|
|
@@ -87476,7 +87640,7 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode, hoverLay
|
|
|
87476
87640
|
})];
|
|
87477
87641
|
};
|
|
87478
87642
|
|
|
87479
|
-
},{"../../components/colorscale":
|
|
87643
|
+
},{"../../components/colorscale":117,"../../components/fx":145,"../../lib":233,"../../plots/cartesian/axes":279}],395:[function(_dereq_,module,exports){
|
|
87480
87644
|
/**
|
|
87481
87645
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87482
87646
|
* All rights reserved.
|
|
@@ -87505,7 +87669,7 @@ module.exports = {
|
|
|
87505
87669
|
}
|
|
87506
87670
|
};
|
|
87507
87671
|
|
|
87508
|
-
},{"../../plots/cartesian":
|
|
87672
|
+
},{"../../plots/cartesian":292,"./attributes":387,"./calc":388,"./colorbar":390,"./defaults":392,"./hover":394,"./plot":398,"./style":399}],396:[function(_dereq_,module,exports){
|
|
87509
87673
|
/**
|
|
87510
87674
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87511
87675
|
* All rights reserved.
|
|
@@ -87638,7 +87802,7 @@ function iterateInterp2d(z, emptyPoints, overshoot) {
|
|
|
87638
87802
|
return maxFractionalChange;
|
|
87639
87803
|
}
|
|
87640
87804
|
|
|
87641
|
-
},{"../../lib":
|
|
87805
|
+
},{"../../lib":233}],397:[function(_dereq_,module,exports){
|
|
87642
87806
|
/**
|
|
87643
87807
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87644
87808
|
* All rights reserved.
|
|
@@ -87726,7 +87890,7 @@ module.exports = function makeBoundArray(trace, arrayIn, v0In, dvIn, numbricks,
|
|
|
87726
87890
|
return arrayOut;
|
|
87727
87891
|
};
|
|
87728
87892
|
|
|
87729
|
-
},{"../../lib":
|
|
87893
|
+
},{"../../lib":233,"../../registry":326}],398:[function(_dereq_,module,exports){
|
|
87730
87894
|
/**
|
|
87731
87895
|
* Copyright 2012-2020, Plotly, Inc.
|
|
87732
87896
|
* All rights reserved.
|
|
@@ -88131,7 +88295,7 @@ function putColor(pixels, pxIndex, c) {
|
|
|
88131
88295
|
pixels[pxIndex + 3] = Math.round(c[3] * 255);
|
|
88132
88296
|
}
|
|
88133
88297
|
|
|
88134
|
-
},{"../../components/colorscale":
|
|
88298
|
+
},{"../../components/colorscale":117,"../../constants/xmlns_namespaces":213,"../../lib":233,"../../registry":326,"d3":21,"tinycolor2":88}],399:[function(_dereq_,module,exports){
|
|
88135
88299
|
/**
|
|
88136
88300
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88137
88301
|
* All rights reserved.
|
|
@@ -88152,7 +88316,7 @@ module.exports = function style(gd) {
|
|
|
88152
88316
|
});
|
|
88153
88317
|
};
|
|
88154
88318
|
|
|
88155
|
-
},{"d3":21}],
|
|
88319
|
+
},{"d3":21}],400:[function(_dereq_,module,exports){
|
|
88156
88320
|
/**
|
|
88157
88321
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88158
88322
|
* All rights reserved.
|
|
@@ -88175,7 +88339,7 @@ module.exports = function handleStyleDefaults(traceIn, traceOut, coerce) {
|
|
|
88175
88339
|
coerce('zhoverformat');
|
|
88176
88340
|
};
|
|
88177
88341
|
|
|
88178
|
-
},{}],
|
|
88342
|
+
},{}],401:[function(_dereq_,module,exports){
|
|
88179
88343
|
/**
|
|
88180
88344
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88181
88345
|
* All rights reserved.
|
|
@@ -88277,7 +88441,7 @@ function isValidZ(z) {
|
|
|
88277
88441
|
return (allRowsAreArrays && oneRowIsFilled && hasOneNumber);
|
|
88278
88442
|
}
|
|
88279
88443
|
|
|
88280
|
-
},{"../../lib":
|
|
88444
|
+
},{"../../lib":233,"../../registry":326,"fast-isnumeric":23}],402:[function(_dereq_,module,exports){
|
|
88281
88445
|
/**
|
|
88282
88446
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88283
88447
|
* All rights reserved.
|
|
@@ -88418,7 +88582,7 @@ module.exports = {
|
|
|
88418
88582
|
}
|
|
88419
88583
|
};
|
|
88420
88584
|
|
|
88421
|
-
},{"../../lib/extend":
|
|
88585
|
+
},{"../../lib/extend":227,"../../plots/template_attributes":321,"../bar/attributes":336,"./bin_attributes":404,"./constants":408}],403:[function(_dereq_,module,exports){
|
|
88422
88586
|
/**
|
|
88423
88587
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88424
88588
|
* All rights reserved.
|
|
@@ -88443,7 +88607,7 @@ module.exports = function doAvg(size, counts) {
|
|
|
88443
88607
|
return total;
|
|
88444
88608
|
};
|
|
88445
88609
|
|
|
88446
|
-
},{}],
|
|
88610
|
+
},{}],404:[function(_dereq_,module,exports){
|
|
88447
88611
|
/**
|
|
88448
88612
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88449
88613
|
* All rights reserved.
|
|
@@ -88478,7 +88642,7 @@ module.exports = function makeBinAttrs(axLetter, match) {
|
|
|
88478
88642
|
};
|
|
88479
88643
|
};
|
|
88480
88644
|
|
|
88481
|
-
},{}],
|
|
88645
|
+
},{}],405:[function(_dereq_,module,exports){
|
|
88482
88646
|
/**
|
|
88483
88647
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88484
88648
|
* All rights reserved.
|
|
@@ -88552,7 +88716,7 @@ module.exports = {
|
|
|
88552
88716
|
}
|
|
88553
88717
|
};
|
|
88554
88718
|
|
|
88555
|
-
},{"fast-isnumeric":23}],
|
|
88719
|
+
},{"fast-isnumeric":23}],406:[function(_dereq_,module,exports){
|
|
88556
88720
|
/**
|
|
88557
88721
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88558
88722
|
* All rights reserved.
|
|
@@ -88728,7 +88892,7 @@ function dateParts(v, pa, calendar) {
|
|
|
88728
88892
|
return parts;
|
|
88729
88893
|
}
|
|
88730
88894
|
|
|
88731
|
-
},{"../../constants/numerical":
|
|
88895
|
+
},{"../../constants/numerical":212,"../../plots/cartesian/axes":279}],407:[function(_dereq_,module,exports){
|
|
88732
88896
|
/**
|
|
88733
88897
|
* Copyright 2012-2020, Plotly, Inc.
|
|
88734
88898
|
* All rights reserved.
|
|
@@ -89307,7 +89471,7 @@ module.exports = {
|
|
|
89307
89471
|
calcAllAutoBins: calcAllAutoBins
|
|
89308
89472
|
};
|
|
89309
89473
|
|
|
89310
|
-
},{"../../lib":
|
|
89474
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"../../registry":326,"../bar/arrays_to_calcdata":335,"./average":403,"./bin_functions":405,"./bin_label_vals":406,"./norm_functions":414,"fast-isnumeric":23}],408:[function(_dereq_,module,exports){
|
|
89311
89475
|
/**
|
|
89312
89476
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89313
89477
|
* All rights reserved.
|
|
@@ -89323,7 +89487,7 @@ module.exports = {
|
|
|
89323
89487
|
eventDataKeys: ['binNumber']
|
|
89324
89488
|
};
|
|
89325
89489
|
|
|
89326
|
-
},{}],
|
|
89490
|
+
},{}],409:[function(_dereq_,module,exports){
|
|
89327
89491
|
/**
|
|
89328
89492
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89329
89493
|
* All rights reserved.
|
|
@@ -89600,7 +89764,7 @@ module.exports = function crossTraceDefaults(fullData, fullLayout) {
|
|
|
89600
89764
|
}
|
|
89601
89765
|
};
|
|
89602
89766
|
|
|
89603
|
-
},{"../../lib":
|
|
89767
|
+
},{"../../lib":233,"../../plots/cartesian/axis_ids":282,"../../plots/cartesian/constraints":286,"../../registry":326,"../bar/defaults":340}],410:[function(_dereq_,module,exports){
|
|
89604
89768
|
/**
|
|
89605
89769
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89606
89770
|
* All rights reserved.
|
|
@@ -89674,7 +89838,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
89674
89838
|
errorBarsSupplyDefaults(traceIn, traceOut, lineColor || Color.defaultLine, {axis: 'x', inherit: 'y'});
|
|
89675
89839
|
};
|
|
89676
89840
|
|
|
89677
|
-
},{"../../components/color":
|
|
89841
|
+
},{"../../components/color":105,"../../lib":233,"../../registry":326,"../bar/style_defaults":351,"./attributes":402}],411:[function(_dereq_,module,exports){
|
|
89678
89842
|
/**
|
|
89679
89843
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89680
89844
|
* All rights reserved.
|
|
@@ -89723,7 +89887,7 @@ module.exports = function eventData(out, pt, trace, cd, pointNumber) {
|
|
|
89723
89887
|
return out;
|
|
89724
89888
|
};
|
|
89725
89889
|
|
|
89726
|
-
},{}],
|
|
89890
|
+
},{}],412:[function(_dereq_,module,exports){
|
|
89727
89891
|
/**
|
|
89728
89892
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89729
89893
|
* All rights reserved.
|
|
@@ -89756,7 +89920,7 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode) {
|
|
|
89756
89920
|
return pts;
|
|
89757
89921
|
};
|
|
89758
89922
|
|
|
89759
|
-
},{"../../plots/cartesian/axes":
|
|
89923
|
+
},{"../../plots/cartesian/axes":279,"../bar/hover":343}],413:[function(_dereq_,module,exports){
|
|
89760
89924
|
/**
|
|
89761
89925
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89762
89926
|
* All rights reserved.
|
|
@@ -89806,7 +89970,7 @@ module.exports = {
|
|
|
89806
89970
|
}
|
|
89807
89971
|
};
|
|
89808
89972
|
|
|
89809
|
-
},{"../../plots/cartesian":
|
|
89973
|
+
},{"../../plots/cartesian":292,"../bar/cross_trace_calc":339,"../bar/layout_attributes":345,"../bar/layout_defaults":346,"../bar/plot":347,"../bar/select":348,"../bar/style":350,"../scatter/marker_colorbar":465,"./attributes":402,"./calc":407,"./cross_trace_defaults":409,"./defaults":410,"./event_data":411,"./hover":412}],414:[function(_dereq_,module,exports){
|
|
89810
89974
|
/**
|
|
89811
89975
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89812
89976
|
* All rights reserved.
|
|
@@ -89841,7 +90005,7 @@ module.exports = {
|
|
|
89841
90005
|
}
|
|
89842
90006
|
};
|
|
89843
90007
|
|
|
89844
|
-
},{}],
|
|
90008
|
+
},{}],415:[function(_dereq_,module,exports){
|
|
89845
90009
|
/**
|
|
89846
90010
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89847
90011
|
* All rights reserved.
|
|
@@ -89909,7 +90073,7 @@ module.exports = extendFlat(
|
|
|
89909
90073
|
colorScaleAttrs('', {cLetter: 'z', autoColorDflt: false})
|
|
89910
90074
|
);
|
|
89911
90075
|
|
|
89912
|
-
},{"../../components/colorscale/attributes":
|
|
90076
|
+
},{"../../components/colorscale/attributes":112,"../../lib/extend":227,"../../plots/attributes":275,"../../plots/template_attributes":321,"../heatmap/attributes":387,"../histogram/attributes":402,"../histogram/bin_attributes":404}],416:[function(_dereq_,module,exports){
|
|
89913
90077
|
/**
|
|
89914
90078
|
* Copyright 2012-2020, Plotly, Inc.
|
|
89915
90079
|
* All rights reserved.
|
|
@@ -90128,7 +90292,7 @@ function getRanges(edges, uniqueVals, gapLow, gapHigh, ax, calendar) {
|
|
|
90128
90292
|
return out;
|
|
90129
90293
|
}
|
|
90130
90294
|
|
|
90131
|
-
},{"../../lib":
|
|
90295
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"../histogram/average":403,"../histogram/bin_functions":405,"../histogram/bin_label_vals":406,"../histogram/calc":407,"../histogram/norm_functions":414}],417:[function(_dereq_,module,exports){
|
|
90132
90296
|
/**
|
|
90133
90297
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90134
90298
|
* All rights reserved.
|
|
@@ -90161,7 +90325,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
90161
90325
|
coerce('hovertemplate');
|
|
90162
90326
|
};
|
|
90163
90327
|
|
|
90164
|
-
},{"../../components/colorscale/defaults":
|
|
90328
|
+
},{"../../components/colorscale/defaults":115,"../../lib":233,"../heatmap/style_defaults":400,"./attributes":415,"./sample_defaults":420}],418:[function(_dereq_,module,exports){
|
|
90165
90329
|
/**
|
|
90166
90330
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90167
90331
|
* All rights reserved.
|
|
@@ -90195,7 +90359,7 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode, hoverLay
|
|
|
90195
90359
|
return pts;
|
|
90196
90360
|
};
|
|
90197
90361
|
|
|
90198
|
-
},{"../../plots/cartesian/axes":
|
|
90362
|
+
},{"../../plots/cartesian/axes":279,"../heatmap/hover":394}],419:[function(_dereq_,module,exports){
|
|
90199
90363
|
/**
|
|
90200
90364
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90201
90365
|
* All rights reserved.
|
|
@@ -90228,7 +90392,7 @@ module.exports = {
|
|
|
90228
90392
|
}
|
|
90229
90393
|
};
|
|
90230
90394
|
|
|
90231
|
-
},{"../../plots/cartesian":
|
|
90395
|
+
},{"../../plots/cartesian":292,"../heatmap/calc":388,"../heatmap/colorbar":390,"../heatmap/plot":398,"../heatmap/style":399,"../histogram/cross_trace_defaults":409,"../histogram/event_data":411,"./attributes":415,"./defaults":417,"./hover":418}],420:[function(_dereq_,module,exports){
|
|
90232
90396
|
/**
|
|
90233
90397
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90234
90398
|
* All rights reserved.
|
|
@@ -90273,7 +90437,7 @@ module.exports = function handleSampleDefaults(traceIn, traceOut, coerce, layout
|
|
|
90273
90437
|
coerce('autobiny');
|
|
90274
90438
|
};
|
|
90275
90439
|
|
|
90276
|
-
},{"../../lib":
|
|
90440
|
+
},{"../../lib":233,"../../registry":326}],421:[function(_dereq_,module,exports){
|
|
90277
90441
|
/**
|
|
90278
90442
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90279
90443
|
* All rights reserved.
|
|
@@ -90331,7 +90495,7 @@ module.exports = extendFlat({
|
|
|
90331
90495
|
})
|
|
90332
90496
|
);
|
|
90333
90497
|
|
|
90334
|
-
},{"../../components/colorscale/attributes":
|
|
90498
|
+
},{"../../components/colorscale/attributes":112,"../../lib/extend":227,"../contour/attributes":365,"../histogram2d/attributes":415}],422:[function(_dereq_,module,exports){
|
|
90335
90499
|
/**
|
|
90336
90500
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90337
90501
|
* All rights reserved.
|
|
@@ -90368,7 +90532,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
90368
90532
|
coerce('hovertemplate');
|
|
90369
90533
|
};
|
|
90370
90534
|
|
|
90371
|
-
},{"../../lib":
|
|
90535
|
+
},{"../../lib":233,"../contour/contours_defaults":372,"../contour/style_defaults":386,"../histogram2d/sample_defaults":420,"./attributes":421}],423:[function(_dereq_,module,exports){
|
|
90372
90536
|
/**
|
|
90373
90537
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90374
90538
|
* All rights reserved.
|
|
@@ -90400,7 +90564,7 @@ module.exports = {
|
|
|
90400
90564
|
}
|
|
90401
90565
|
};
|
|
90402
90566
|
|
|
90403
|
-
},{"../../plots/cartesian":
|
|
90567
|
+
},{"../../plots/cartesian":292,"../contour/calc":366,"../contour/colorbar":368,"../contour/hover":378,"../contour/plot":383,"../contour/style":385,"../histogram/cross_trace_defaults":409,"./attributes":421,"./defaults":422}],424:[function(_dereq_,module,exports){
|
|
90404
90568
|
/**
|
|
90405
90569
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90406
90570
|
* All rights reserved.
|
|
@@ -90518,7 +90682,7 @@ module.exports = extendFlat({
|
|
|
90518
90682
|
transforms: undefined
|
|
90519
90683
|
});
|
|
90520
90684
|
|
|
90521
|
-
},{"../../lib/extend":
|
|
90685
|
+
},{"../../lib/extend":227,"../../plots/attributes":275,"../../plots/template_attributes":321,"./constants":426}],425:[function(_dereq_,module,exports){
|
|
90522
90686
|
/**
|
|
90523
90687
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90524
90688
|
* All rights reserved.
|
|
@@ -90616,7 +90780,7 @@ function makeScaler(trace) {
|
|
|
90616
90780
|
};
|
|
90617
90781
|
}
|
|
90618
90782
|
|
|
90619
|
-
},{"../../lib":
|
|
90783
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"./constants":426,"./helpers":429,"fast-isnumeric":23}],426:[function(_dereq_,module,exports){
|
|
90620
90784
|
/**
|
|
90621
90785
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90622
90786
|
* All rights reserved.
|
|
@@ -90677,7 +90841,7 @@ module.exports = {
|
|
|
90677
90841
|
}
|
|
90678
90842
|
};
|
|
90679
90843
|
|
|
90680
|
-
},{}],
|
|
90844
|
+
},{}],427:[function(_dereq_,module,exports){
|
|
90681
90845
|
/**
|
|
90682
90846
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90683
90847
|
* All rights reserved.
|
|
@@ -90734,7 +90898,7 @@ module.exports = function supplyDefaults(traceIn, traceOut) {
|
|
|
90734
90898
|
traceOut._length = null;
|
|
90735
90899
|
};
|
|
90736
90900
|
|
|
90737
|
-
},{"../../lib":
|
|
90901
|
+
},{"../../lib":233,"../../snapshot/helpers":330,"./attributes":424,"./constants":426}],428:[function(_dereq_,module,exports){
|
|
90738
90902
|
/**
|
|
90739
90903
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90740
90904
|
* All rights reserved.
|
|
@@ -90756,7 +90920,7 @@ module.exports = function eventData(out, pt) {
|
|
|
90756
90920
|
return out;
|
|
90757
90921
|
};
|
|
90758
90922
|
|
|
90759
|
-
},{}],
|
|
90923
|
+
},{}],429:[function(_dereq_,module,exports){
|
|
90760
90924
|
/**
|
|
90761
90925
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90762
90926
|
* All rights reserved.
|
|
@@ -90777,7 +90941,7 @@ exports.getImageSize = function(src) {
|
|
|
90777
90941
|
return sizeOf(buff);
|
|
90778
90942
|
};
|
|
90779
90943
|
|
|
90780
|
-
},{"../../snapshot/helpers":
|
|
90944
|
+
},{"../../snapshot/helpers":330,"buffer/":18,"image-size":58}],430:[function(_dereq_,module,exports){
|
|
90781
90945
|
/**
|
|
90782
90946
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90783
90947
|
* All rights reserved.
|
|
@@ -90877,7 +91041,7 @@ module.exports = function hoverPoints(pointData, xval, yval) {
|
|
|
90877
91041
|
})];
|
|
90878
91042
|
};
|
|
90879
91043
|
|
|
90880
|
-
},{"../../components/fx":
|
|
91044
|
+
},{"../../components/fx":145,"../../lib":233,"./constants":426}],431:[function(_dereq_,module,exports){
|
|
90881
91045
|
/**
|
|
90882
91046
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90883
91047
|
* All rights reserved.
|
|
@@ -90907,7 +91071,7 @@ module.exports = {
|
|
|
90907
91071
|
}
|
|
90908
91072
|
};
|
|
90909
91073
|
|
|
90910
|
-
},{"../../plots/cartesian":
|
|
91074
|
+
},{"../../plots/cartesian":292,"./attributes":424,"./calc":425,"./defaults":427,"./event_data":428,"./hover":430,"./plot":432,"./style":433}],432:[function(_dereq_,module,exports){
|
|
90911
91075
|
/**
|
|
90912
91076
|
* Copyright 2012-2020, Plotly, Inc.
|
|
90913
91077
|
* All rights reserved.
|
|
@@ -91137,7 +91301,7 @@ module.exports = function plot(gd, plotinfo, cdimage, imageLayer) {
|
|
|
91137
91301
|
});
|
|
91138
91302
|
};
|
|
91139
91303
|
|
|
91140
|
-
},{"../../constants/xmlns_namespaces":
|
|
91304
|
+
},{"../../constants/xmlns_namespaces":213,"../../lib":233,"./constants":426,"d3":21}],433:[function(_dereq_,module,exports){
|
|
91141
91305
|
/**
|
|
91142
91306
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91143
91307
|
* All rights reserved.
|
|
@@ -91157,7 +91321,7 @@ module.exports = function style(gd) {
|
|
|
91157
91321
|
});
|
|
91158
91322
|
};
|
|
91159
91323
|
|
|
91160
|
-
},{"d3":21}],
|
|
91324
|
+
},{"d3":21}],434:[function(_dereq_,module,exports){
|
|
91161
91325
|
/**
|
|
91162
91326
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91163
91327
|
* All rights reserved.
|
|
@@ -91428,7 +91592,7 @@ module.exports = {
|
|
|
91428
91592
|
}
|
|
91429
91593
|
};
|
|
91430
91594
|
|
|
91431
|
-
},{"../../components/color/attributes":
|
|
91595
|
+
},{"../../components/color/attributes":104,"../../lib/extend":227,"../../plots/attributes":275,"../../plots/domain":306,"../../plots/font_attributes":307,"../../plots/template_attributes":321}],435:[function(_dereq_,module,exports){
|
|
91432
91596
|
/**
|
|
91433
91597
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91434
91598
|
* All rights reserved.
|
|
@@ -91451,7 +91615,7 @@ exports.clean = function(newFullData, newFullLayout, oldFullData, oldFullLayout)
|
|
|
91451
91615
|
plots.cleanBasePlot(exports.name, newFullData, newFullLayout, oldFullData, oldFullLayout);
|
|
91452
91616
|
};
|
|
91453
91617
|
|
|
91454
|
-
},{"../../plots/plots":
|
|
91618
|
+
},{"../../plots/plots":313}],436:[function(_dereq_,module,exports){
|
|
91455
91619
|
/**
|
|
91456
91620
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91457
91621
|
* All rights reserved.
|
|
@@ -91634,7 +91798,7 @@ module.exports = {
|
|
|
91634
91798
|
generateExtendedColors: generateExtendedColors
|
|
91635
91799
|
};
|
|
91636
91800
|
|
|
91637
|
-
},{"../../components/color":
|
|
91801
|
+
},{"../../components/color":105,"fast-isnumeric":23,"tinycolor2":88}],437:[function(_dereq_,module,exports){
|
|
91638
91802
|
/**
|
|
91639
91803
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91640
91804
|
* All rights reserved.
|
|
@@ -91765,7 +91929,7 @@ module.exports = {
|
|
|
91765
91929
|
supplyDefaults: supplyDefaults
|
|
91766
91930
|
};
|
|
91767
91931
|
|
|
91768
|
-
},{"../../lib":
|
|
91932
|
+
},{"../../lib":233,"../../plots/domain":306,"../bar/defaults":340,"./attributes":434,"fast-isnumeric":23}],438:[function(_dereq_,module,exports){
|
|
91769
91933
|
/**
|
|
91770
91934
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91771
91935
|
* All rights reserved.
|
|
@@ -91814,7 +91978,7 @@ module.exports = function eventData(pt, trace) {
|
|
|
91814
91978
|
return out;
|
|
91815
91979
|
};
|
|
91816
91980
|
|
|
91817
|
-
},{"../../components/fx/helpers":
|
|
91981
|
+
},{"../../components/fx/helpers":141}],439:[function(_dereq_,module,exports){
|
|
91818
91982
|
/**
|
|
91819
91983
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91820
91984
|
* All rights reserved.
|
|
@@ -91862,7 +92026,7 @@ exports.getRotationAngle = function(rotation) {
|
|
|
91862
92026
|
return (rotation === 'auto' ? 0 : rotation) * Math.PI / 180;
|
|
91863
92027
|
};
|
|
91864
92028
|
|
|
91865
|
-
},{"../../lib":
|
|
92029
|
+
},{"../../lib":233}],440:[function(_dereq_,module,exports){
|
|
91866
92030
|
/**
|
|
91867
92031
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91868
92032
|
* All rights reserved.
|
|
@@ -91895,7 +92059,7 @@ module.exports = {
|
|
|
91895
92059
|
}
|
|
91896
92060
|
};
|
|
91897
92061
|
|
|
91898
|
-
},{"./attributes":
|
|
92062
|
+
},{"./attributes":434,"./base_plot":435,"./calc":436,"./defaults":437,"./layout_attributes":441,"./layout_defaults":442,"./plot":443,"./style":444,"./style_one":445}],441:[function(_dereq_,module,exports){
|
|
91899
92063
|
/**
|
|
91900
92064
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91901
92065
|
* All rights reserved.
|
|
@@ -91928,7 +92092,7 @@ module.exports = {
|
|
|
91928
92092
|
}
|
|
91929
92093
|
};
|
|
91930
92094
|
|
|
91931
|
-
},{}],
|
|
92095
|
+
},{}],442:[function(_dereq_,module,exports){
|
|
91932
92096
|
/**
|
|
91933
92097
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91934
92098
|
* All rights reserved.
|
|
@@ -91953,7 +92117,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut) {
|
|
|
91953
92117
|
coerce('extendpiecolors');
|
|
91954
92118
|
};
|
|
91955
92119
|
|
|
91956
|
-
},{"../../lib":
|
|
92120
|
+
},{"../../lib":233,"./layout_attributes":441}],443:[function(_dereq_,module,exports){
|
|
91957
92121
|
/**
|
|
91958
92122
|
* Copyright 2012-2020, Plotly, Inc.
|
|
91959
92123
|
* All rights reserved.
|
|
@@ -93133,7 +93297,7 @@ module.exports = {
|
|
|
93133
93297
|
computeTransform: computeTransform
|
|
93134
93298
|
};
|
|
93135
93299
|
|
|
93136
|
-
},{"../../components/color":
|
|
93300
|
+
},{"../../components/color":105,"../../components/drawing":127,"../../components/fx":145,"../../lib":233,"../../lib/svg_text_utils":255,"../../plots/plots":313,"../bar/constants":338,"../bar/uniform_text":352,"./event_data":438,"./helpers":439,"d3":21}],444:[function(_dereq_,module,exports){
|
|
93137
93301
|
/**
|
|
93138
93302
|
* Copyright 2012-2020, Plotly, Inc.
|
|
93139
93303
|
* All rights reserved.
|
|
@@ -93166,7 +93330,7 @@ module.exports = function style(gd) {
|
|
|
93166
93330
|
});
|
|
93167
93331
|
};
|
|
93168
93332
|
|
|
93169
|
-
},{"../bar/uniform_text":
|
|
93333
|
+
},{"../bar/uniform_text":352,"./style_one":445,"d3":21}],445:[function(_dereq_,module,exports){
|
|
93170
93334
|
/**
|
|
93171
93335
|
* Copyright 2012-2020, Plotly, Inc.
|
|
93172
93336
|
* All rights reserved.
|
|
@@ -93190,7 +93354,7 @@ module.exports = function styleOne(s, pt, trace) {
|
|
|
93190
93354
|
.call(Color.stroke, lineColor);
|
|
93191
93355
|
};
|
|
93192
93356
|
|
|
93193
|
-
},{"../../components/color":
|
|
93357
|
+
},{"../../components/color":105,"./helpers":439}],446:[function(_dereq_,module,exports){
|
|
93194
93358
|
/**
|
|
93195
93359
|
* Copyright 2012-2020, Plotly, Inc.
|
|
93196
93360
|
* All rights reserved.
|
|
@@ -93242,7 +93406,7 @@ module.exports = function arraysToCalcdata(cd, trace) {
|
|
|
93242
93406
|
}
|
|
93243
93407
|
};
|
|
93244
93408
|
|
|
93245
|
-
},{"../../lib":
|
|
93409
|
+
},{"../../lib":233}],447:[function(_dereq_,module,exports){
|
|
93246
93410
|
/**
|
|
93247
93411
|
* Copyright 2012-2020, Plotly, Inc.
|
|
93248
93412
|
* All rights reserved.
|
|
@@ -93696,7 +93860,7 @@ module.exports = {
|
|
|
93696
93860
|
}
|
|
93697
93861
|
};
|
|
93698
93862
|
|
|
93699
|
-
},{"../../components/colorscale/attributes":
|
|
93863
|
+
},{"../../components/colorscale/attributes":112,"../../components/drawing":127,"../../components/drawing/attributes":126,"../../lib/extend":227,"../../plots/font_attributes":307,"../../plots/template_attributes":321,"./constants":451}],448:[function(_dereq_,module,exports){
|
|
93700
93864
|
/**
|
|
93701
93865
|
* Copyright 2012-2020, Plotly, Inc.
|
|
93702
93866
|
* All rights reserved.
|
|
@@ -93995,7 +94159,7 @@ module.exports = {
|
|
|
93995
94159
|
getStackOpts: getStackOpts
|
|
93996
94160
|
};
|
|
93997
94161
|
|
|
93998
|
-
},{"../../constants/numerical":
|
|
94162
|
+
},{"../../constants/numerical":212,"../../lib":233,"../../plots/cartesian/align_period":276,"../../plots/cartesian/axes":279,"./arrays_to_calcdata":446,"./calc_selection":449,"./colorscale_calc":450,"./subtypes":472,"fast-isnumeric":23}],449:[function(_dereq_,module,exports){
|
|
93999
94163
|
/**
|
|
94000
94164
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94001
94165
|
* All rights reserved.
|
|
@@ -94014,7 +94178,7 @@ module.exports = function calcSelection(cd, trace) {
|
|
|
94014
94178
|
}
|
|
94015
94179
|
};
|
|
94016
94180
|
|
|
94017
|
-
},{"../../lib":
|
|
94181
|
+
},{"../../lib":233}],450:[function(_dereq_,module,exports){
|
|
94018
94182
|
/**
|
|
94019
94183
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94020
94184
|
* All rights reserved.
|
|
@@ -94057,7 +94221,7 @@ module.exports = function calcMarkerColorscale(gd, trace) {
|
|
|
94057
94221
|
}
|
|
94058
94222
|
};
|
|
94059
94223
|
|
|
94060
|
-
},{"../../components/colorscale/calc":
|
|
94224
|
+
},{"../../components/colorscale/calc":113,"../../components/colorscale/helpers":116,"./subtypes":472}],451:[function(_dereq_,module,exports){
|
|
94061
94225
|
/**
|
|
94062
94226
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94063
94227
|
* All rights reserved.
|
|
@@ -94086,7 +94250,7 @@ module.exports = {
|
|
|
94086
94250
|
eventDataKeys: []
|
|
94087
94251
|
};
|
|
94088
94252
|
|
|
94089
|
-
},{}],
|
|
94253
|
+
},{}],452:[function(_dereq_,module,exports){
|
|
94090
94254
|
/**
|
|
94091
94255
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94092
94256
|
* All rights reserved.
|
|
@@ -94267,7 +94431,7 @@ function getInterp(calcTrace, index, position, posAttr) {
|
|
|
94267
94431
|
return pt0.s + (pt1.s - pt0.s) * (position - pt0[posAttr]) / (pt1[posAttr] - pt0[posAttr]);
|
|
94268
94432
|
}
|
|
94269
94433
|
|
|
94270
|
-
},{"./calc":
|
|
94434
|
+
},{"./calc":448}],453:[function(_dereq_,module,exports){
|
|
94271
94435
|
/**
|
|
94272
94436
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94273
94437
|
* All rights reserved.
|
|
@@ -94306,7 +94470,7 @@ module.exports = function crossTraceDefaults(fullData) {
|
|
|
94306
94470
|
}
|
|
94307
94471
|
};
|
|
94308
94472
|
|
|
94309
|
-
},{}],
|
|
94473
|
+
},{}],454:[function(_dereq_,module,exports){
|
|
94310
94474
|
/**
|
|
94311
94475
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94312
94476
|
* All rights reserved.
|
|
@@ -94399,7 +94563,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
94399
94563
|
Lib.coerceSelectionMarkerOpacity(traceOut, coerce);
|
|
94400
94564
|
};
|
|
94401
94565
|
|
|
94402
|
-
},{"../../lib":
|
|
94566
|
+
},{"../../lib":233,"../../registry":326,"./attributes":447,"./constants":451,"./fillcolor_defaults":455,"./line_defaults":460,"./line_shape_defaults":462,"./marker_defaults":466,"./period_defaults":467,"./stack_defaults":470,"./subtypes":472,"./text_defaults":473,"./xy_defaults":474}],455:[function(_dereq_,module,exports){
|
|
94403
94567
|
/**
|
|
94404
94568
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94405
94569
|
* All rights reserved.
|
|
@@ -94436,7 +94600,7 @@ module.exports = function fillColorDefaults(traceIn, traceOut, defaultColor, coe
|
|
|
94436
94600
|
));
|
|
94437
94601
|
};
|
|
94438
94602
|
|
|
94439
|
-
},{"../../components/color":
|
|
94603
|
+
},{"../../components/color":105,"../../lib":233}],456:[function(_dereq_,module,exports){
|
|
94440
94604
|
/**
|
|
94441
94605
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94442
94606
|
* All rights reserved.
|
|
@@ -94462,7 +94626,7 @@ module.exports = function formatLabels(cdi, trace, fullLayout) {
|
|
|
94462
94626
|
return labels;
|
|
94463
94627
|
};
|
|
94464
94628
|
|
|
94465
|
-
},{"../../plots/cartesian/axes":
|
|
94629
|
+
},{"../../plots/cartesian/axes":279}],457:[function(_dereq_,module,exports){
|
|
94466
94630
|
/**
|
|
94467
94631
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94468
94632
|
* All rights reserved.
|
|
@@ -94511,7 +94675,7 @@ module.exports = function getTraceColor(trace, di) {
|
|
|
94511
94675
|
}
|
|
94512
94676
|
};
|
|
94513
94677
|
|
|
94514
|
-
},{"../../components/color":
|
|
94678
|
+
},{"../../components/color":105,"./subtypes":472}],458:[function(_dereq_,module,exports){
|
|
94515
94679
|
/**
|
|
94516
94680
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94517
94681
|
* All rights reserved.
|
|
@@ -94706,7 +94870,7 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode) {
|
|
|
94706
94870
|
}
|
|
94707
94871
|
};
|
|
94708
94872
|
|
|
94709
|
-
},{"../../components/color":
|
|
94873
|
+
},{"../../components/color":105,"../../components/fx":145,"../../lib":233,"../../registry":326,"./get_trace_color":457}],459:[function(_dereq_,module,exports){
|
|
94710
94874
|
/**
|
|
94711
94875
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94712
94876
|
* All rights reserved.
|
|
@@ -94752,7 +94916,7 @@ module.exports = {
|
|
|
94752
94916
|
}
|
|
94753
94917
|
};
|
|
94754
94918
|
|
|
94755
|
-
},{"../../plots/cartesian":
|
|
94919
|
+
},{"../../plots/cartesian":292,"./arrays_to_calcdata":446,"./attributes":447,"./calc":448,"./cross_trace_calc":452,"./cross_trace_defaults":453,"./defaults":454,"./format_labels":456,"./hover":458,"./marker_colorbar":465,"./plot":468,"./select":469,"./style":471,"./subtypes":472}],460:[function(_dereq_,module,exports){
|
|
94756
94920
|
/**
|
|
94757
94921
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94758
94922
|
* All rights reserved.
|
|
@@ -94783,7 +94947,7 @@ module.exports = function lineDefaults(traceIn, traceOut, defaultColor, layout,
|
|
|
94783
94947
|
if(!(opts || {}).noDash) coerce('line.dash');
|
|
94784
94948
|
};
|
|
94785
94949
|
|
|
94786
|
-
},{"../../components/colorscale/defaults":
|
|
94950
|
+
},{"../../components/colorscale/defaults":115,"../../components/colorscale/helpers":116,"../../lib":233}],461:[function(_dereq_,module,exports){
|
|
94787
94951
|
/**
|
|
94788
94952
|
* Copyright 2012-2020, Plotly, Inc.
|
|
94789
94953
|
* All rights reserved.
|
|
@@ -95244,7 +95408,7 @@ module.exports = function linePoints(d, opts) {
|
|
|
95244
95408
|
return segments;
|
|
95245
95409
|
};
|
|
95246
95410
|
|
|
95247
|
-
},{"../../constants/numerical":
|
|
95411
|
+
},{"../../constants/numerical":212,"../../lib":233,"./constants":451}],462:[function(_dereq_,module,exports){
|
|
95248
95412
|
/**
|
|
95249
95413
|
* Copyright 2012-2020, Plotly, Inc.
|
|
95250
95414
|
* All rights reserved.
|
|
@@ -95263,7 +95427,7 @@ module.exports = function handleLineShapeDefaults(traceIn, traceOut, coerce) {
|
|
|
95263
95427
|
if(shape === 'spline') coerce('line.smoothing');
|
|
95264
95428
|
};
|
|
95265
95429
|
|
|
95266
|
-
},{}],
|
|
95430
|
+
},{}],463:[function(_dereq_,module,exports){
|
|
95267
95431
|
/**
|
|
95268
95432
|
* Copyright 2012-2020, Plotly, Inc.
|
|
95269
95433
|
* All rights reserved.
|
|
@@ -95353,7 +95517,7 @@ module.exports = function linkTraces(gd, plotinfo, cdscatter) {
|
|
|
95353
95517
|
return cdscatterSorted;
|
|
95354
95518
|
};
|
|
95355
95519
|
|
|
95356
|
-
},{}],
|
|
95520
|
+
},{}],464:[function(_dereq_,module,exports){
|
|
95357
95521
|
/**
|
|
95358
95522
|
* Copyright 2012-2020, Plotly, Inc.
|
|
95359
95523
|
* All rights reserved.
|
|
@@ -95395,7 +95559,7 @@ module.exports = function makeBubbleSizeFn(trace) {
|
|
|
95395
95559
|
};
|
|
95396
95560
|
};
|
|
95397
95561
|
|
|
95398
|
-
},{"fast-isnumeric":23}],
|
|
95562
|
+
},{"fast-isnumeric":23}],465:[function(_dereq_,module,exports){
|
|
95399
95563
|
/**
|
|
95400
95564
|
* Copyright 2012-2020, Plotly, Inc.
|
|
95401
95565
|
* All rights reserved.
|
|
@@ -95413,7 +95577,7 @@ module.exports = {
|
|
|
95413
95577
|
max: 'cmax'
|
|
95414
95578
|
};
|
|
95415
95579
|
|
|
95416
|
-
},{}],
|
|
95580
|
+
},{}],466:[function(_dereq_,module,exports){
|
|
95417
95581
|
/**
|
|
95418
95582
|
* Copyright 2012-2020, Plotly, Inc.
|
|
95419
95583
|
* All rights reserved.
|
|
@@ -95494,7 +95658,7 @@ module.exports = function markerDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
95494
95658
|
}
|
|
95495
95659
|
};
|
|
95496
95660
|
|
|
95497
|
-
},{"../../components/color":
|
|
95661
|
+
},{"../../components/color":105,"../../components/colorscale/defaults":115,"../../components/colorscale/helpers":116,"./subtypes":472}],467:[function(_dereq_,module,exports){
|
|
95498
95662
|
/**
|
|
95499
95663
|
* Copyright 2012-2020, Plotly, Inc.
|
|
95500
95664
|
* All rights reserved.
|
|
@@ -95541,7 +95705,7 @@ module.exports = function handlePeriodDefaults(traceIn, traceOut, layout, coerce
|
|
|
95541
95705
|
}
|
|
95542
95706
|
};
|
|
95543
95707
|
|
|
95544
|
-
},{"../../constants/numerical":
|
|
95708
|
+
},{"../../constants/numerical":212,"../../lib":233}],468:[function(_dereq_,module,exports){
|
|
95545
95709
|
/**
|
|
95546
95710
|
* Copyright 2012-2020, Plotly, Inc.
|
|
95547
95711
|
* All rights reserved.
|
|
@@ -96035,7 +96199,7 @@ function plotOne(gd, idx, plotinfo, cdscatter, cdscatterAll, element, transition
|
|
|
96035
96199
|
join.selectAll('text')
|
|
96036
96200
|
.call(Drawing.textPointStyle, trace, gd)
|
|
96037
96201
|
.each(function(d) {
|
|
96038
|
-
// This just *has* to be totally custom
|
|
96202
|
+
// This just *has* to be totally custom because of SVG text positioning :(
|
|
96039
96203
|
// It's obviously copied from translatePoint; we just can't use that
|
|
96040
96204
|
var x = xa.c2p(d.x);
|
|
96041
96205
|
var y = ya.c2p(d.y);
|
|
@@ -96102,7 +96266,7 @@ function selectMarkers(gd, idx, plotinfo, cdscatter, cdscatterAll) {
|
|
|
96102
96266
|
});
|
|
96103
96267
|
}
|
|
96104
96268
|
|
|
96105
|
-
},{"../../components/drawing":
|
|
96269
|
+
},{"../../components/drawing":127,"../../lib":233,"../../lib/polygon":245,"../../registry":326,"./line_points":461,"./link_traces":463,"./subtypes":472,"d3":21}],469:[function(_dereq_,module,exports){
|
|
96106
96270
|
/**
|
|
96107
96271
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96108
96272
|
* All rights reserved.
|
|
@@ -96156,7 +96320,7 @@ module.exports = function selectPoints(searchInfo, selectionTester) {
|
|
|
96156
96320
|
return selection;
|
|
96157
96321
|
};
|
|
96158
96322
|
|
|
96159
|
-
},{"./subtypes":
|
|
96323
|
+
},{"./subtypes":472}],470:[function(_dereq_,module,exports){
|
|
96160
96324
|
/**
|
|
96161
96325
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96162
96326
|
* All rights reserved.
|
|
@@ -96261,7 +96425,7 @@ module.exports = function handleStackDefaults(traceIn, traceOut, layout, coerce)
|
|
|
96261
96425
|
}
|
|
96262
96426
|
};
|
|
96263
96427
|
|
|
96264
|
-
},{}],
|
|
96428
|
+
},{}],471:[function(_dereq_,module,exports){
|
|
96265
96429
|
/**
|
|
96266
96430
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96267
96431
|
* All rights reserved.
|
|
@@ -96332,7 +96496,7 @@ module.exports = {
|
|
|
96332
96496
|
styleOnSelect: styleOnSelect
|
|
96333
96497
|
};
|
|
96334
96498
|
|
|
96335
|
-
},{"../../components/drawing":
|
|
96499
|
+
},{"../../components/drawing":127,"../../registry":326,"d3":21}],472:[function(_dereq_,module,exports){
|
|
96336
96500
|
/**
|
|
96337
96501
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96338
96502
|
* All rights reserved.
|
|
@@ -96371,7 +96535,7 @@ module.exports = {
|
|
|
96371
96535
|
}
|
|
96372
96536
|
};
|
|
96373
96537
|
|
|
96374
|
-
},{"../../lib":
|
|
96538
|
+
},{"../../lib":233}],473:[function(_dereq_,module,exports){
|
|
96375
96539
|
/**
|
|
96376
96540
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96377
96541
|
* All rights reserved.
|
|
@@ -96401,7 +96565,7 @@ module.exports = function(traceIn, traceOut, layout, coerce, opts) {
|
|
|
96401
96565
|
}
|
|
96402
96566
|
};
|
|
96403
96567
|
|
|
96404
|
-
},{"../../lib":
|
|
96568
|
+
},{"../../lib":233}],474:[function(_dereq_,module,exports){
|
|
96405
96569
|
/**
|
|
96406
96570
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96407
96571
|
* All rights reserved.
|
|
@@ -96445,7 +96609,7 @@ module.exports = function handleXYDefaults(traceIn, traceOut, layout, coerce) {
|
|
|
96445
96609
|
return len;
|
|
96446
96610
|
};
|
|
96447
96611
|
|
|
96448
|
-
},{"../../lib":
|
|
96612
|
+
},{"../../lib":233,"../../registry":326}],475:[function(_dereq_,module,exports){
|
|
96449
96613
|
/**
|
|
96450
96614
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96451
96615
|
* All rights reserved.
|
|
@@ -96553,7 +96717,7 @@ module.exports = {
|
|
|
96553
96717
|
hovertemplate: hovertemplateAttrs(),
|
|
96554
96718
|
};
|
|
96555
96719
|
|
|
96556
|
-
},{"../../components/colorscale/attributes":
|
|
96720
|
+
},{"../../components/colorscale/attributes":112,"../../components/drawing/attributes":126,"../../lib/extend":227,"../../plots/attributes":275,"../../plots/template_attributes":321,"../scatter/attributes":447}],476:[function(_dereq_,module,exports){
|
|
96557
96721
|
/**
|
|
96558
96722
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96559
96723
|
* All rights reserved.
|
|
@@ -96634,7 +96798,7 @@ module.exports = function calc(gd, trace) {
|
|
|
96634
96798
|
return cd;
|
|
96635
96799
|
};
|
|
96636
96800
|
|
|
96637
|
-
},{"../scatter/arrays_to_calcdata":
|
|
96801
|
+
},{"../scatter/arrays_to_calcdata":446,"../scatter/calc":448,"../scatter/calc_selection":449,"../scatter/colorscale_calc":450,"fast-isnumeric":23}],477:[function(_dereq_,module,exports){
|
|
96638
96802
|
/**
|
|
96639
96803
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96640
96804
|
* All rights reserved.
|
|
@@ -96738,7 +96902,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
96738
96902
|
Lib.coerceSelectionMarkerOpacity(traceOut, coerce);
|
|
96739
96903
|
};
|
|
96740
96904
|
|
|
96741
|
-
},{"../../lib":
|
|
96905
|
+
},{"../../lib":233,"../scatter/constants":451,"../scatter/fillcolor_defaults":455,"../scatter/line_defaults":460,"../scatter/line_shape_defaults":462,"../scatter/marker_defaults":466,"../scatter/subtypes":472,"../scatter/text_defaults":473,"./attributes":475}],478:[function(_dereq_,module,exports){
|
|
96742
96906
|
/**
|
|
96743
96907
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96744
96908
|
* All rights reserved.
|
|
@@ -96770,7 +96934,7 @@ module.exports = function eventData(out, pt, trace, cd, pointNumber) {
|
|
|
96770
96934
|
return out;
|
|
96771
96935
|
};
|
|
96772
96936
|
|
|
96773
|
-
},{}],
|
|
96937
|
+
},{}],479:[function(_dereq_,module,exports){
|
|
96774
96938
|
/**
|
|
96775
96939
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96776
96940
|
* All rights reserved.
|
|
@@ -96794,7 +96958,7 @@ module.exports = function formatLabels(cdi, trace, fullLayout) {
|
|
|
96794
96958
|
return labels;
|
|
96795
96959
|
};
|
|
96796
96960
|
|
|
96797
|
-
},{"../../plots/cartesian/axes":
|
|
96961
|
+
},{"../../plots/cartesian/axes":279}],480:[function(_dereq_,module,exports){
|
|
96798
96962
|
/**
|
|
96799
96963
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96800
96964
|
* All rights reserved.
|
|
@@ -96868,7 +97032,7 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode) {
|
|
|
96868
97032
|
return scatterPointData;
|
|
96869
97033
|
};
|
|
96870
97034
|
|
|
96871
|
-
},{"../scatter/hover":
|
|
97035
|
+
},{"../scatter/hover":458}],481:[function(_dereq_,module,exports){
|
|
96872
97036
|
/**
|
|
96873
97037
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96874
97038
|
* All rights reserved.
|
|
@@ -96902,7 +97066,7 @@ module.exports = {
|
|
|
96902
97066
|
}
|
|
96903
97067
|
};
|
|
96904
97068
|
|
|
96905
|
-
},{"../../plots/ternary":
|
|
97069
|
+
},{"../../plots/ternary":322,"../scatter/marker_colorbar":465,"../scatter/select":469,"../scatter/style":471,"./attributes":475,"./calc":476,"./defaults":477,"./event_data":478,"./format_labels":479,"./hover":480,"./plot":482}],482:[function(_dereq_,module,exports){
|
|
96906
97070
|
/**
|
|
96907
97071
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96908
97072
|
* All rights reserved.
|
|
@@ -96935,7 +97099,7 @@ module.exports = function plot(gd, ternary, moduleCalcData) {
|
|
|
96935
97099
|
scatterPlot(gd, plotinfo, moduleCalcData, scatterLayer);
|
|
96936
97100
|
};
|
|
96937
97101
|
|
|
96938
|
-
},{"../scatter/plot":
|
|
97102
|
+
},{"../scatter/plot":468}],483:[function(_dereq_,module,exports){
|
|
96939
97103
|
/**
|
|
96940
97104
|
* Copyright 2012-2020, Plotly, Inc.
|
|
96941
97105
|
* All rights reserved.
|
|
@@ -97135,7 +97299,7 @@ module.exports = {
|
|
|
97135
97299
|
}
|
|
97136
97300
|
};
|
|
97137
97301
|
|
|
97138
|
-
},{"../../lib/extend":
|
|
97302
|
+
},{"../../lib/extend":227,"../box/attributes":353}],484:[function(_dereq_,module,exports){
|
|
97139
97303
|
/**
|
|
97140
97304
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97141
97305
|
* All rights reserved.
|
|
@@ -97311,7 +97475,7 @@ function calcSpan(trace, cdi, valAxis, bandwidth) {
|
|
|
97311
97475
|
return spanOut;
|
|
97312
97476
|
}
|
|
97313
97477
|
|
|
97314
|
-
},{"../../constants/numerical":
|
|
97478
|
+
},{"../../constants/numerical":212,"../../lib":233,"../../plots/cartesian/axes":279,"../box/calc":354,"./helpers":487}],485:[function(_dereq_,module,exports){
|
|
97315
97479
|
/**
|
|
97316
97480
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97317
97481
|
* All rights reserved.
|
|
@@ -97354,7 +97518,7 @@ module.exports = function crossTraceCalc(gd, plotinfo) {
|
|
|
97354
97518
|
}
|
|
97355
97519
|
};
|
|
97356
97520
|
|
|
97357
|
-
},{"../box/cross_trace_calc":
|
|
97521
|
+
},{"../box/cross_trace_calc":355}],486:[function(_dereq_,module,exports){
|
|
97358
97522
|
/**
|
|
97359
97523
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97360
97524
|
* All rights reserved.
|
|
@@ -97415,7 +97579,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
97415
97579
|
if(!meanLineVisible) traceOut.meanline = {visible: false};
|
|
97416
97580
|
};
|
|
97417
97581
|
|
|
97418
|
-
},{"../../components/color":
|
|
97582
|
+
},{"../../components/color":105,"../../lib":233,"../box/defaults":356,"./attributes":483}],487:[function(_dereq_,module,exports){
|
|
97419
97583
|
/**
|
|
97420
97584
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97421
97585
|
* All rights reserved.
|
|
@@ -97488,7 +97652,7 @@ exports.getKdeValue = function(calcItem, trace, valueDist) {
|
|
|
97488
97652
|
|
|
97489
97653
|
exports.extractVal = function(o) { return o.v; };
|
|
97490
97654
|
|
|
97491
|
-
},{"../../lib":
|
|
97655
|
+
},{"../../lib":233}],488:[function(_dereq_,module,exports){
|
|
97492
97656
|
/**
|
|
97493
97657
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97494
97658
|
* All rights reserved.
|
|
@@ -97600,7 +97764,7 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode, hoverLay
|
|
|
97600
97764
|
return closeData;
|
|
97601
97765
|
};
|
|
97602
97766
|
|
|
97603
|
-
},{"../../lib":
|
|
97767
|
+
},{"../../lib":233,"../../plots/cartesian/axes":279,"../box/hover":358,"./helpers":487}],489:[function(_dereq_,module,exports){
|
|
97604
97768
|
/**
|
|
97605
97769
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97606
97770
|
* All rights reserved.
|
|
@@ -97634,7 +97798,7 @@ module.exports = {
|
|
|
97634
97798
|
}
|
|
97635
97799
|
};
|
|
97636
97800
|
|
|
97637
|
-
},{"../../plots/cartesian":
|
|
97801
|
+
},{"../../plots/cartesian":292,"../box/defaults":356,"../box/select":363,"../scatter/style":471,"./attributes":483,"./calc":484,"./cross_trace_calc":485,"./defaults":486,"./hover":488,"./layout_attributes":490,"./layout_defaults":491,"./plot":492,"./style":493}],490:[function(_dereq_,module,exports){
|
|
97638
97802
|
/**
|
|
97639
97803
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97640
97804
|
* All rights reserved.
|
|
@@ -97660,7 +97824,7 @@ module.exports = {
|
|
|
97660
97824
|
})
|
|
97661
97825
|
};
|
|
97662
97826
|
|
|
97663
|
-
},{"../../lib":
|
|
97827
|
+
},{"../../lib":233,"../box/layout_attributes":360}],491:[function(_dereq_,module,exports){
|
|
97664
97828
|
/**
|
|
97665
97829
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97666
97830
|
* All rights reserved.
|
|
@@ -97682,7 +97846,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, fullData) {
|
|
|
97682
97846
|
boxLayoutDefaults._supply(layoutIn, layoutOut, fullData, coerce, 'violin');
|
|
97683
97847
|
};
|
|
97684
97848
|
|
|
97685
|
-
},{"../../lib":
|
|
97849
|
+
},{"../../lib":233,"../box/layout_defaults":361,"./layout_attributes":490}],492:[function(_dereq_,module,exports){
|
|
97686
97850
|
/**
|
|
97687
97851
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97688
97852
|
* All rights reserved.
|
|
@@ -97872,7 +98036,7 @@ module.exports = function plot(gd, plotinfo, cdViolins, violinLayer) {
|
|
|
97872
98036
|
});
|
|
97873
98037
|
};
|
|
97874
98038
|
|
|
97875
|
-
},{"../../components/drawing":
|
|
98039
|
+
},{"../../components/drawing":127,"../../lib":233,"../box/plot":362,"../scatter/line_points":461,"./helpers":487,"d3":21}],493:[function(_dereq_,module,exports){
|
|
97876
98040
|
/**
|
|
97877
98041
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97878
98042
|
* All rights reserved.
|
|
@@ -97927,7 +98091,7 @@ module.exports = function style(gd) {
|
|
|
97927
98091
|
});
|
|
97928
98092
|
};
|
|
97929
98093
|
|
|
97930
|
-
},{"../../components/color":
|
|
98094
|
+
},{"../../components/color":105,"../scatter/style":471,"d3":21}],494:[function(_dereq_,module,exports){
|
|
97931
98095
|
/**
|
|
97932
98096
|
* Copyright 2012-2020, Plotly, Inc.
|
|
97933
98097
|
* All rights reserved.
|
|
@@ -97939,7 +98103,7 @@ module.exports = function style(gd) {
|
|
|
97939
98103
|
'use strict';
|
|
97940
98104
|
|
|
97941
98105
|
// package version injected by `npm run preprocess`
|
|
97942
|
-
exports.version = '1.58.
|
|
98106
|
+
exports.version = '1.58.4';
|
|
97943
98107
|
|
|
97944
98108
|
},{}]},{},[11])(11)
|
|
97945
98109
|
});
|