plotly.js 1.58.3 → 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 +8 -0
- package/dist/README.md +25 -25
- package/dist/plot-schema.json +13 -13
- package/dist/plotly-basic.js +434 -326
- package/dist/plotly-basic.min.js +4 -4
- package/dist/plotly-cartesian.js +551 -443
- package/dist/plotly-cartesian.min.js +4 -4
- package/dist/plotly-finance.js +515 -407
- package/dist/plotly-finance.min.js +4 -4
- package/dist/plotly-geo-assets.js +2 -2
- package/dist/plotly-geo.js +438 -330
- package/dist/plotly-geo.min.js +4 -4
- package/dist/plotly-gl2d.js +616 -508
- package/dist/plotly-gl2d.min.js +10 -10
- package/dist/plotly-gl3d.js +340 -271
- package/dist/plotly-gl3d.min.js +3 -3
- package/dist/plotly-mapbox.js +448 -340
- package/dist/plotly-mapbox.min.js +4 -4
- package/dist/plotly-with-meta.js +805 -736
- package/dist/plotly.js +801 -732
- package/dist/plotly.min.js +3 -3
- 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 +1 -1
- package/src/plots/gl3d/scene.js +16 -18
- 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/version.js +1 -1
package/dist/plotly-basic.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* plotly.js (basic) v1.58.
|
|
2
|
+
* plotly.js (basic) 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":202}],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":308}],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/core');
|
|
100
100
|
|
|
101
|
-
},{"../src/core":
|
|
101
|
+
},{"../src/core":183}],4:[function(_dereq_,module,exports){
|
|
102
102
|
/**
|
|
103
103
|
* Copyright 2012-2020, Plotly, Inc.
|
|
104
104
|
* All rights reserved.
|
|
@@ -131,7 +131,7 @@ module.exports = Plotly;
|
|
|
131
131
|
|
|
132
132
|
module.exports = _dereq_('../src/traces/pie');
|
|
133
133
|
|
|
134
|
-
},{"../src/traces/pie":
|
|
134
|
+
},{"../src/traces/pie":323}],6:[function(_dereq_,module,exports){
|
|
135
135
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
136
136
|
//
|
|
137
137
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -12426,7 +12426,7 @@ return Promise$1;
|
|
|
12426
12426
|
|
|
12427
12427
|
|
|
12428
12428
|
}).call(this)}).call(this,_dereq_('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
12429
|
-
},{"_process":
|
|
12429
|
+
},{"_process":57}],11:[function(_dereq_,module,exports){
|
|
12430
12430
|
/**
|
|
12431
12431
|
* inspired by is-number <https://github.com/jonschlinkert/is-number>
|
|
12432
12432
|
* but significantly simplified and sped up by ignoring number and string constructors
|
|
@@ -12452,7 +12452,7 @@ module.exports = function(n) {
|
|
|
12452
12452
|
return n - n < 1;
|
|
12453
12453
|
};
|
|
12454
12454
|
|
|
12455
|
-
},{"is-string-blank":
|
|
12455
|
+
},{"is-string-blank":46}],12:[function(_dereq_,module,exports){
|
|
12456
12456
|
module.exports = adjoint;
|
|
12457
12457
|
|
|
12458
12458
|
/**
|
|
@@ -13722,6 +13722,43 @@ module.exports = isBrowser && detect()
|
|
|
13722
13722
|
},{"is-browser":44}],44:[function(_dereq_,module,exports){
|
|
13723
13723
|
module.exports = true;
|
|
13724
13724
|
},{}],45:[function(_dereq_,module,exports){
|
|
13725
|
+
'use strict'
|
|
13726
|
+
|
|
13727
|
+
module.exports = isMobile
|
|
13728
|
+
module.exports.isMobile = isMobile
|
|
13729
|
+
module.exports.default = isMobile
|
|
13730
|
+
|
|
13731
|
+
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
|
|
13732
|
+
|
|
13733
|
+
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
|
|
13734
|
+
|
|
13735
|
+
function isMobile (opts) {
|
|
13736
|
+
if (!opts) opts = {}
|
|
13737
|
+
var ua = opts.ua
|
|
13738
|
+
if (!ua && typeof navigator !== 'undefined') ua = navigator.userAgent
|
|
13739
|
+
if (ua && ua.headers && typeof ua.headers['user-agent'] === 'string') {
|
|
13740
|
+
ua = ua.headers['user-agent']
|
|
13741
|
+
}
|
|
13742
|
+
if (typeof ua !== 'string') return false
|
|
13743
|
+
|
|
13744
|
+
var result = opts.tablet ? tabletRE.test(ua) : mobileRE.test(ua)
|
|
13745
|
+
|
|
13746
|
+
if (
|
|
13747
|
+
!result &&
|
|
13748
|
+
opts.tablet &&
|
|
13749
|
+
opts.featureDetect &&
|
|
13750
|
+
navigator &&
|
|
13751
|
+
navigator.maxTouchPoints > 1 &&
|
|
13752
|
+
ua.indexOf('Macintosh') !== -1 &&
|
|
13753
|
+
ua.indexOf('Safari') !== -1
|
|
13754
|
+
) {
|
|
13755
|
+
result = true
|
|
13756
|
+
}
|
|
13757
|
+
|
|
13758
|
+
return result
|
|
13759
|
+
}
|
|
13760
|
+
|
|
13761
|
+
},{}],46:[function(_dereq_,module,exports){
|
|
13725
13762
|
'use strict';
|
|
13726
13763
|
|
|
13727
13764
|
/**
|
|
@@ -13758,7 +13795,7 @@ module.exports = function(str){
|
|
|
13758
13795
|
return true;
|
|
13759
13796
|
}
|
|
13760
13797
|
|
|
13761
|
-
},{}],
|
|
13798
|
+
},{}],47:[function(_dereq_,module,exports){
|
|
13762
13799
|
var rootPosition = { left: 0, top: 0 }
|
|
13763
13800
|
|
|
13764
13801
|
module.exports = mouseEventOffset
|
|
@@ -13785,7 +13822,7 @@ function getBoundingClientOffset (element) {
|
|
|
13785
13822
|
}
|
|
13786
13823
|
}
|
|
13787
13824
|
|
|
13788
|
-
},{}],
|
|
13825
|
+
},{}],48:[function(_dereq_,module,exports){
|
|
13789
13826
|
|
|
13790
13827
|
module.exports = parse
|
|
13791
13828
|
|
|
@@ -13844,7 +13881,7 @@ function parseValues(args) {
|
|
|
13844
13881
|
return numbers ? numbers.map(Number) : []
|
|
13845
13882
|
}
|
|
13846
13883
|
|
|
13847
|
-
},{}],
|
|
13884
|
+
},{}],49:[function(_dereq_,module,exports){
|
|
13848
13885
|
/*
|
|
13849
13886
|
* @copyright 2016 Sean Connelly (@voidqk), http://syntheti.cc
|
|
13850
13887
|
* @license MIT
|
|
@@ -13972,7 +14009,7 @@ if (typeof window === 'object')
|
|
|
13972
14009
|
|
|
13973
14010
|
module.exports = PolyBool;
|
|
13974
14011
|
|
|
13975
|
-
},{"./lib/build-log":
|
|
14012
|
+
},{"./lib/build-log":50,"./lib/epsilon":51,"./lib/geojson":52,"./lib/intersecter":53,"./lib/segment-chainer":55,"./lib/segment-selector":56}],50:[function(_dereq_,module,exports){
|
|
13976
14013
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
13977
14014
|
// MIT License
|
|
13978
14015
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -14087,7 +14124,7 @@ function BuildLog(){
|
|
|
14087
14124
|
|
|
14088
14125
|
module.exports = BuildLog;
|
|
14089
14126
|
|
|
14090
|
-
},{}],
|
|
14127
|
+
},{}],51:[function(_dereq_,module,exports){
|
|
14091
14128
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
14092
14129
|
// MIT License
|
|
14093
14130
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -14259,7 +14296,7 @@ function Epsilon(eps){
|
|
|
14259
14296
|
|
|
14260
14297
|
module.exports = Epsilon;
|
|
14261
14298
|
|
|
14262
|
-
},{}],
|
|
14299
|
+
},{}],52:[function(_dereq_,module,exports){
|
|
14263
14300
|
// (c) Copyright 2017, Sean Connelly (@voidqk), http://syntheti.cc
|
|
14264
14301
|
// MIT License
|
|
14265
14302
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -14449,7 +14486,7 @@ var GeoJSON = {
|
|
|
14449
14486
|
|
|
14450
14487
|
module.exports = GeoJSON;
|
|
14451
14488
|
|
|
14452
|
-
},{}],
|
|
14489
|
+
},{}],53:[function(_dereq_,module,exports){
|
|
14453
14490
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
14454
14491
|
// MIT License
|
|
14455
14492
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -14956,7 +14993,7 @@ function Intersecter(selfIntersection, eps, buildLog){
|
|
|
14956
14993
|
|
|
14957
14994
|
module.exports = Intersecter;
|
|
14958
14995
|
|
|
14959
|
-
},{"./linked-list":
|
|
14996
|
+
},{"./linked-list":54}],54:[function(_dereq_,module,exports){
|
|
14960
14997
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
14961
14998
|
// MIT License
|
|
14962
14999
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -15039,7 +15076,7 @@ var LinkedList = {
|
|
|
15039
15076
|
|
|
15040
15077
|
module.exports = LinkedList;
|
|
15041
15078
|
|
|
15042
|
-
},{}],
|
|
15079
|
+
},{}],55:[function(_dereq_,module,exports){
|
|
15043
15080
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
15044
15081
|
// MIT License
|
|
15045
15082
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -15293,7 +15330,7 @@ function SegmentChainer(segments, eps, buildLog){
|
|
|
15293
15330
|
|
|
15294
15331
|
module.exports = SegmentChainer;
|
|
15295
15332
|
|
|
15296
|
-
},{}],
|
|
15333
|
+
},{}],56:[function(_dereq_,module,exports){
|
|
15297
15334
|
// (c) Copyright 2016, Sean Connelly (@voidqk), http://syntheti.cc
|
|
15298
15335
|
// MIT License
|
|
15299
15336
|
// Project Home: https://github.com/voidqk/polybooljs
|
|
@@ -15461,7 +15498,7 @@ var SegmentSelector = {
|
|
|
15461
15498
|
|
|
15462
15499
|
module.exports = SegmentSelector;
|
|
15463
15500
|
|
|
15464
|
-
},{}],
|
|
15501
|
+
},{}],57:[function(_dereq_,module,exports){
|
|
15465
15502
|
// shim for using process in browser
|
|
15466
15503
|
var process = module.exports = {};
|
|
15467
15504
|
|
|
@@ -15647,7 +15684,7 @@ process.chdir = function (dir) {
|
|
|
15647
15684
|
};
|
|
15648
15685
|
process.umask = function() { return 0; };
|
|
15649
15686
|
|
|
15650
|
-
},{}],
|
|
15687
|
+
},{}],58:[function(_dereq_,module,exports){
|
|
15651
15688
|
// TinyColor v1.4.2
|
|
15652
15689
|
// https://github.com/bgrins/TinyColor
|
|
15653
15690
|
// Brian Grinstead, MIT License
|
|
@@ -16844,7 +16881,7 @@ else {
|
|
|
16844
16881
|
|
|
16845
16882
|
})(Math);
|
|
16846
16883
|
|
|
16847
|
-
},{}],
|
|
16884
|
+
},{}],59:[function(_dereq_,module,exports){
|
|
16848
16885
|
/**
|
|
16849
16886
|
* Copyright 2012-2020, Plotly, Inc.
|
|
16850
16887
|
* All rights reserved.
|
|
@@ -16915,7 +16952,7 @@ module.exports = [
|
|
|
16915
16952
|
}
|
|
16916
16953
|
];
|
|
16917
16954
|
|
|
16918
|
-
},{}],
|
|
16955
|
+
},{}],60:[function(_dereq_,module,exports){
|
|
16919
16956
|
/**
|
|
16920
16957
|
* Copyright 2012-2020, Plotly, Inc.
|
|
16921
16958
|
* All rights reserved.
|
|
@@ -17297,7 +17334,7 @@ module.exports = templatedArray('annotation', {
|
|
|
17297
17334
|
}
|
|
17298
17335
|
});
|
|
17299
17336
|
|
|
17300
|
-
},{"../../constants/axis_placeable_objects":
|
|
17337
|
+
},{"../../constants/axis_placeable_objects":178,"../../plot_api/plot_template":237,"../../plots/cartesian/constants":254,"../../plots/font_attributes":276,"./arrow_paths":59}],61:[function(_dereq_,module,exports){
|
|
17301
17338
|
/**
|
|
17302
17339
|
* Copyright 2012-2020, Plotly, Inc.
|
|
17303
17340
|
* All rights reserved.
|
|
@@ -17388,7 +17425,7 @@ function calcAxisExpansion(ann, ax) {
|
|
|
17388
17425
|
ann._extremes[axId] = extremes;
|
|
17389
17426
|
}
|
|
17390
17427
|
|
|
17391
|
-
},{"../../lib":
|
|
17428
|
+
},{"../../lib":202,"../../plots/cartesian/axes":248,"./draw":66}],62:[function(_dereq_,module,exports){
|
|
17392
17429
|
/**
|
|
17393
17430
|
* Copyright 2012-2020, Plotly, Inc.
|
|
17394
17431
|
* All rights reserved.
|
|
@@ -17526,7 +17563,7 @@ function clickData2r(d, ax) {
|
|
|
17526
17563
|
return ax.type === 'log' ? ax.l2r(d) : ax.d2r(d);
|
|
17527
17564
|
}
|
|
17528
17565
|
|
|
17529
|
-
},{"../../lib":
|
|
17566
|
+
},{"../../lib":202,"../../plot_api/plot_template":237,"../../registry":290}],63:[function(_dereq_,module,exports){
|
|
17530
17567
|
/**
|
|
17531
17568
|
* Copyright 2012-2020, Plotly, Inc.
|
|
17532
17569
|
* All rights reserved.
|
|
@@ -17605,7 +17642,7 @@ module.exports = function handleAnnotationCommonDefaults(annIn, annOut, fullLayo
|
|
|
17605
17642
|
coerce('captureevents', !!hoverText);
|
|
17606
17643
|
};
|
|
17607
17644
|
|
|
17608
|
-
},{"../../lib":
|
|
17645
|
+
},{"../../lib":202,"../color":75}],64:[function(_dereq_,module,exports){
|
|
17609
17646
|
/**
|
|
17610
17647
|
* Copyright 2012-2020, Plotly, Inc.
|
|
17611
17648
|
* All rights reserved.
|
|
@@ -17668,7 +17705,7 @@ module.exports = function convertCoords(gd, ax, newType, doExtra) {
|
|
|
17668
17705
|
}
|
|
17669
17706
|
};
|
|
17670
17707
|
|
|
17671
|
-
},{"../../lib/to_log_range":
|
|
17708
|
+
},{"../../lib/to_log_range":226,"fast-isnumeric":11}],65:[function(_dereq_,module,exports){
|
|
17672
17709
|
/**
|
|
17673
17710
|
* Copyright 2012-2020, Plotly, Inc.
|
|
17674
17711
|
* All rights reserved.
|
|
@@ -17776,7 +17813,7 @@ function handleAnnotationDefaults(annIn, annOut, fullLayout) {
|
|
|
17776
17813
|
}
|
|
17777
17814
|
}
|
|
17778
17815
|
|
|
17779
|
-
},{"../../lib":
|
|
17816
|
+
},{"../../lib":202,"../../plots/array_container_defaults":243,"../../plots/cartesian/axes":248,"./attributes":60,"./common_defaults":63}],66:[function(_dereq_,module,exports){
|
|
17780
17817
|
/**
|
|
17781
17818
|
* Copyright 2012-2020, Plotly, Inc.
|
|
17782
17819
|
* All rights reserved.
|
|
@@ -18537,7 +18574,7 @@ function drawRaw(gd, options, index, subplotId, xa, ya) {
|
|
|
18537
18574
|
} else annText.call(textLayout);
|
|
18538
18575
|
}
|
|
18539
18576
|
|
|
18540
|
-
},{"../../lib":
|
|
18577
|
+
},{"../../lib":202,"../../lib/setcursor":222,"../../lib/svg_text_utils":224,"../../plot_api/plot_template":237,"../../plots/cartesian/axes":248,"../../plots/plots":282,"../../registry":290,"../color":75,"../dragelement":94,"../drawing":97,"../fx":115,"./draw_arrow_head":67,"d3":9}],67:[function(_dereq_,module,exports){
|
|
18541
18578
|
/**
|
|
18542
18579
|
* Copyright 2012-2020, Plotly, Inc.
|
|
18543
18580
|
* All rights reserved.
|
|
@@ -18693,7 +18730,7 @@ module.exports = function drawArrowHead(el3, ends, options) {
|
|
|
18693
18730
|
if(doEnd) drawhead(headStyle, end, endRot, scale);
|
|
18694
18731
|
};
|
|
18695
18732
|
|
|
18696
|
-
},{"../../lib":
|
|
18733
|
+
},{"../../lib":202,"../color":75,"./arrow_paths":59,"d3":9}],68:[function(_dereq_,module,exports){
|
|
18697
18734
|
/**
|
|
18698
18735
|
* Copyright 2012-2020, Plotly, Inc.
|
|
18699
18736
|
* All rights reserved.
|
|
@@ -18727,7 +18764,7 @@ module.exports = {
|
|
|
18727
18764
|
convertCoords: _dereq_('./convert_coords')
|
|
18728
18765
|
};
|
|
18729
18766
|
|
|
18730
|
-
},{"../../plots/cartesian/include_components":
|
|
18767
|
+
},{"../../plots/cartesian/include_components":260,"./attributes":60,"./calc_autorange":61,"./click":62,"./convert_coords":64,"./defaults":65,"./draw":66}],69:[function(_dereq_,module,exports){
|
|
18731
18768
|
/**
|
|
18732
18769
|
* Copyright 2012-2020, Plotly, Inc.
|
|
18733
18770
|
* All rights reserved.
|
|
@@ -18815,7 +18852,7 @@ module.exports = overrideAll(templatedArray('annotation', {
|
|
|
18815
18852
|
// zref: 'z'
|
|
18816
18853
|
}), 'calc', 'from-root');
|
|
18817
18854
|
|
|
18818
|
-
},{"../../plot_api/edit_types":
|
|
18855
|
+
},{"../../plot_api/edit_types":230,"../../plot_api/plot_template":237,"../annotations/attributes":60}],70:[function(_dereq_,module,exports){
|
|
18819
18856
|
/**
|
|
18820
18857
|
* Copyright 2012-2020, Plotly, Inc.
|
|
18821
18858
|
* All rights reserved.
|
|
@@ -18880,7 +18917,7 @@ function mockAnnAxes(ann, scene) {
|
|
|
18880
18917
|
};
|
|
18881
18918
|
}
|
|
18882
18919
|
|
|
18883
|
-
},{"../../lib":
|
|
18920
|
+
},{"../../lib":202,"../../plots/cartesian/axes":248}],71:[function(_dereq_,module,exports){
|
|
18884
18921
|
/**
|
|
18885
18922
|
* Copyright 2012-2020, Plotly, Inc.
|
|
18886
18923
|
* All rights reserved.
|
|
@@ -18956,7 +18993,7 @@ function handleAnnotationDefaults(annIn, annOut, sceneLayout, opts) {
|
|
|
18956
18993
|
}
|
|
18957
18994
|
}
|
|
18958
18995
|
|
|
18959
|
-
},{"../../lib":
|
|
18996
|
+
},{"../../lib":202,"../../plots/array_container_defaults":243,"../../plots/cartesian/axes":248,"../annotations/common_defaults":63,"./attributes":69}],72:[function(_dereq_,module,exports){
|
|
18960
18997
|
/**
|
|
18961
18998
|
* Copyright 2012-2020, Plotly, Inc.
|
|
18962
18999
|
* All rights reserved.
|
|
@@ -19008,7 +19045,7 @@ module.exports = function draw(scene) {
|
|
|
19008
19045
|
}
|
|
19009
19046
|
};
|
|
19010
19047
|
|
|
19011
|
-
},{"../../plots/gl3d/project":
|
|
19048
|
+
},{"../../plots/gl3d/project":279,"../annotations/draw":66}],73:[function(_dereq_,module,exports){
|
|
19012
19049
|
/**
|
|
19013
19050
|
* Copyright 2012-2020, Plotly, Inc.
|
|
19014
19051
|
* All rights reserved.
|
|
@@ -19056,7 +19093,7 @@ function includeGL3D(layoutIn, layoutOut) {
|
|
|
19056
19093
|
}
|
|
19057
19094
|
}
|
|
19058
19095
|
|
|
19059
|
-
},{"../../lib":
|
|
19096
|
+
},{"../../lib":202,"../../registry":290,"./attributes":69,"./convert":70,"./defaults":71,"./draw":72}],74:[function(_dereq_,module,exports){
|
|
19060
19097
|
/**
|
|
19061
19098
|
* Copyright 2012-2020, Plotly, Inc.
|
|
19062
19099
|
* All rights reserved.
|
|
@@ -19096,7 +19133,7 @@ exports.borderLine = '#BEC8D9';
|
|
|
19096
19133
|
// gives back exactly lightLine if the other colors are defaults.
|
|
19097
19134
|
exports.lightFraction = 100 * (0xe - 0x4) / (0xf - 0x4);
|
|
19098
19135
|
|
|
19099
|
-
},{}],
|
|
19136
|
+
},{}],75:[function(_dereq_,module,exports){
|
|
19100
19137
|
/**
|
|
19101
19138
|
* Copyright 2012-2020, Plotly, Inc.
|
|
19102
19139
|
* All rights reserved.
|
|
@@ -19270,7 +19307,7 @@ function cleanOne(val) {
|
|
|
19270
19307
|
return 'rgb(' + rgbStr + ')';
|
|
19271
19308
|
}
|
|
19272
19309
|
|
|
19273
|
-
},{"./attributes":
|
|
19310
|
+
},{"./attributes":74,"fast-isnumeric":11,"tinycolor2":58}],76:[function(_dereq_,module,exports){
|
|
19274
19311
|
/**
|
|
19275
19312
|
* Copyright 2012-2020, Plotly, Inc.
|
|
19276
19313
|
* All rights reserved.
|
|
@@ -19461,7 +19498,7 @@ module.exports = overrideAll({
|
|
|
19461
19498
|
}
|
|
19462
19499
|
}, 'colorbars', 'from-root');
|
|
19463
19500
|
|
|
19464
|
-
},{"../../lib/extend":
|
|
19501
|
+
},{"../../lib/extend":196,"../../plot_api/edit_types":230,"../../plots/cartesian/layout_attributes":262,"../../plots/font_attributes":276}],77:[function(_dereq_,module,exports){
|
|
19465
19502
|
/**
|
|
19466
19503
|
* Copyright 2012-2020, Plotly, Inc.
|
|
19467
19504
|
* All rights reserved.
|
|
@@ -19489,7 +19526,7 @@ module.exports = {
|
|
|
19489
19526
|
}
|
|
19490
19527
|
};
|
|
19491
19528
|
|
|
19492
|
-
},{}],
|
|
19529
|
+
},{}],78:[function(_dereq_,module,exports){
|
|
19493
19530
|
/**
|
|
19494
19531
|
* Copyright 2012-2020, Plotly, Inc.
|
|
19495
19532
|
* All rights reserved.
|
|
@@ -19559,7 +19596,7 @@ module.exports = function colorbarDefaults(containerIn, containerOut, layout) {
|
|
|
19559
19596
|
coerce('title.side');
|
|
19560
19597
|
};
|
|
19561
19598
|
|
|
19562
|
-
},{"../../lib":
|
|
19599
|
+
},{"../../lib":202,"../../plot_api/plot_template":237,"../../plots/cartesian/tick_label_defaults":269,"../../plots/cartesian/tick_mark_defaults":270,"../../plots/cartesian/tick_value_defaults":271,"./attributes":76}],79:[function(_dereq_,module,exports){
|
|
19563
19600
|
/**
|
|
19564
19601
|
* Copyright 2012-2020, Plotly, Inc.
|
|
19565
19602
|
* All rights reserved.
|
|
@@ -20293,7 +20330,7 @@ module.exports = {
|
|
|
20293
20330
|
draw: draw
|
|
20294
20331
|
};
|
|
20295
20332
|
|
|
20296
|
-
},{"../../constants/alignment":
|
|
20333
|
+
},{"../../constants/alignment":177,"../../lib":202,"../../lib/extend":196,"../../lib/setcursor":222,"../../lib/svg_text_utils":224,"../../plots/cartesian/axes":248,"../../plots/cartesian/axis_defaults":250,"../../plots/cartesian/layout_attributes":262,"../../plots/cartesian/position_defaults":265,"../../plots/plots":282,"../../registry":290,"../color":75,"../colorscale/helpers":86,"../dragelement":94,"../drawing":97,"../titles":170,"./constants":77,"d3":9,"tinycolor2":58}],80:[function(_dereq_,module,exports){
|
|
20297
20334
|
/**
|
|
20298
20335
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20299
20336
|
* All rights reserved.
|
|
@@ -20312,7 +20349,7 @@ module.exports = function hasColorbar(container) {
|
|
|
20312
20349
|
return Lib.isPlainObject(container.colorbar);
|
|
20313
20350
|
};
|
|
20314
20351
|
|
|
20315
|
-
},{"../../lib":
|
|
20352
|
+
},{"../../lib":202}],81:[function(_dereq_,module,exports){
|
|
20316
20353
|
/**
|
|
20317
20354
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20318
20355
|
* All rights reserved.
|
|
@@ -20334,7 +20371,7 @@ module.exports = {
|
|
|
20334
20371
|
hasColorbar: _dereq_('./has_colorbar')
|
|
20335
20372
|
};
|
|
20336
20373
|
|
|
20337
|
-
},{"./attributes":
|
|
20374
|
+
},{"./attributes":76,"./defaults":78,"./draw":79,"./has_colorbar":80}],82:[function(_dereq_,module,exports){
|
|
20338
20375
|
/**
|
|
20339
20376
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20340
20377
|
* All rights reserved.
|
|
@@ -20542,7 +20579,7 @@ module.exports = function colorScaleAttrs(context, opts) {
|
|
|
20542
20579
|
return attrs;
|
|
20543
20580
|
};
|
|
20544
20581
|
|
|
20545
|
-
},{"../../lib/regex":
|
|
20582
|
+
},{"../../lib/regex":218,"../colorbar/attributes":76,"./scales.js":90}],83:[function(_dereq_,module,exports){
|
|
20546
20583
|
/**
|
|
20547
20584
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20548
20585
|
* All rights reserved.
|
|
@@ -20621,7 +20658,7 @@ module.exports = function calc(gd, trace, opts) {
|
|
|
20621
20658
|
}
|
|
20622
20659
|
};
|
|
20623
20660
|
|
|
20624
|
-
},{"../../lib":
|
|
20661
|
+
},{"../../lib":202,"./helpers":86,"fast-isnumeric":11}],84:[function(_dereq_,module,exports){
|
|
20625
20662
|
/**
|
|
20626
20663
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20627
20664
|
* All rights reserved.
|
|
@@ -20698,7 +20735,7 @@ module.exports = function crossTraceDefaults(fullData, fullLayout) {
|
|
|
20698
20735
|
}
|
|
20699
20736
|
};
|
|
20700
20737
|
|
|
20701
|
-
},{"../../lib":
|
|
20738
|
+
},{"../../lib":202,"./helpers":86}],85:[function(_dereq_,module,exports){
|
|
20702
20739
|
/**
|
|
20703
20740
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20704
20741
|
* All rights reserved.
|
|
@@ -20823,7 +20860,7 @@ module.exports = function colorScaleDefaults(parentContIn, parentContOut, layout
|
|
|
20823
20860
|
}
|
|
20824
20861
|
};
|
|
20825
20862
|
|
|
20826
|
-
},{"../../lib":
|
|
20863
|
+
},{"../../lib":202,"../../registry":290,"../colorbar/defaults":78,"../colorbar/has_colorbar":80,"./scales":90,"fast-isnumeric":11}],86:[function(_dereq_,module,exports){
|
|
20827
20864
|
/**
|
|
20828
20865
|
* Copyright 2012-2020, Plotly, Inc.
|
|
20829
20866
|
* All rights reserved.
|
|
@@ -21063,7 +21100,7 @@ module.exports = {
|
|
|
21063
21100
|
makeColorScaleFuncFromTrace: makeColorScaleFuncFromTrace
|
|
21064
21101
|
};
|
|
21065
21102
|
|
|
21066
|
-
},{"../../lib":
|
|
21103
|
+
},{"../../lib":202,"../color":75,"./scales":90,"d3":9,"fast-isnumeric":11,"tinycolor2":58}],87:[function(_dereq_,module,exports){
|
|
21067
21104
|
/**
|
|
21068
21105
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21069
21106
|
* All rights reserved.
|
|
@@ -21091,7 +21128,7 @@ module.exports = {
|
|
|
21091
21128
|
calc: _dereq_('./calc'),
|
|
21092
21129
|
|
|
21093
21130
|
// ./scales.js is required in lib/coerce.js ;
|
|
21094
|
-
// it needs to be a
|
|
21131
|
+
// it needs to be a separate module to avoid circular a dependency
|
|
21095
21132
|
scales: scales.scales,
|
|
21096
21133
|
defaultScale: scales.defaultScale,
|
|
21097
21134
|
getScale: scales.get,
|
|
@@ -21105,7 +21142,7 @@ module.exports = {
|
|
|
21105
21142
|
makeColorScaleFuncFromTrace: helpers.makeColorScaleFuncFromTrace
|
|
21106
21143
|
};
|
|
21107
21144
|
|
|
21108
|
-
},{"./attributes":
|
|
21145
|
+
},{"./attributes":82,"./calc":83,"./cross_trace_defaults":84,"./defaults":85,"./helpers":86,"./layout_attributes":88,"./layout_defaults":89,"./scales":90}],88:[function(_dereq_,module,exports){
|
|
21109
21146
|
/**
|
|
21110
21147
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21111
21148
|
* All rights reserved.
|
|
@@ -21166,7 +21203,7 @@ module.exports = {
|
|
|
21166
21203
|
}))
|
|
21167
21204
|
};
|
|
21168
21205
|
|
|
21169
|
-
},{"../../lib/extend":
|
|
21206
|
+
},{"../../lib/extend":196,"./attributes":82,"./scales":90}],89:[function(_dereq_,module,exports){
|
|
21170
21207
|
/**
|
|
21171
21208
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21172
21209
|
* All rights reserved.
|
|
@@ -21217,7 +21254,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut) {
|
|
|
21217
21254
|
}
|
|
21218
21255
|
};
|
|
21219
21256
|
|
|
21220
|
-
},{"../../lib":
|
|
21257
|
+
},{"../../lib":202,"../../plot_api/plot_template":237,"./defaults":85,"./layout_attributes":88}],90:[function(_dereq_,module,exports){
|
|
21221
21258
|
/**
|
|
21222
21259
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21223
21260
|
* All rights reserved.
|
|
@@ -21421,7 +21458,7 @@ module.exports = {
|
|
|
21421
21458
|
isValid: isValidScale
|
|
21422
21459
|
};
|
|
21423
21460
|
|
|
21424
|
-
},{"tinycolor2":
|
|
21461
|
+
},{"tinycolor2":58}],91:[function(_dereq_,module,exports){
|
|
21425
21462
|
/**
|
|
21426
21463
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21427
21464
|
* All rights reserved.
|
|
@@ -21454,7 +21491,7 @@ module.exports = function align(v, dv, v0, v1, anchor) {
|
|
|
21454
21491
|
return vc;
|
|
21455
21492
|
};
|
|
21456
21493
|
|
|
21457
|
-
},{}],
|
|
21494
|
+
},{}],92:[function(_dereq_,module,exports){
|
|
21458
21495
|
/**
|
|
21459
21496
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21460
21497
|
* All rights reserved.
|
|
@@ -21492,7 +21529,7 @@ module.exports = function getCursor(x, y, xanchor, yanchor) {
|
|
|
21492
21529
|
return cursorset[y][x];
|
|
21493
21530
|
};
|
|
21494
21531
|
|
|
21495
|
-
},{"../../lib":
|
|
21532
|
+
},{"../../lib":202}],93:[function(_dereq_,module,exports){
|
|
21496
21533
|
/**
|
|
21497
21534
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21498
21535
|
* All rights reserved.
|
|
@@ -21551,7 +21588,7 @@ exports.selectingOrDrawing = function(dragmode) {
|
|
|
21551
21588
|
);
|
|
21552
21589
|
};
|
|
21553
21590
|
|
|
21554
|
-
},{}],
|
|
21591
|
+
},{}],94:[function(_dereq_,module,exports){
|
|
21555
21592
|
/**
|
|
21556
21593
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21557
21594
|
* All rights reserved.
|
|
@@ -21843,7 +21880,7 @@ function pointerOffset(e) {
|
|
|
21843
21880
|
);
|
|
21844
21881
|
}
|
|
21845
21882
|
|
|
21846
|
-
},{"../../lib":
|
|
21883
|
+
},{"../../lib":202,"../../plots/cartesian/constants":254,"./align":91,"./cursor":92,"./unhover":95,"has-hover":42,"has-passive-events":43,"mouse-event-offset":47}],95:[function(_dereq_,module,exports){
|
|
21847
21884
|
/**
|
|
21848
21885
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21849
21886
|
* All rights reserved.
|
|
@@ -21898,7 +21935,7 @@ unhover.raw = function raw(gd, evt) {
|
|
|
21898
21935
|
}
|
|
21899
21936
|
};
|
|
21900
21937
|
|
|
21901
|
-
},{"../../lib/dom":
|
|
21938
|
+
},{"../../lib/dom":194,"../../lib/events":195,"../../lib/throttle":225,"../fx/constants":109}],96:[function(_dereq_,module,exports){
|
|
21902
21939
|
/**
|
|
21903
21940
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21904
21941
|
* All rights reserved.
|
|
@@ -21923,7 +21960,7 @@ exports.dash = {
|
|
|
21923
21960
|
|
|
21924
21961
|
};
|
|
21925
21962
|
|
|
21926
|
-
},{}],
|
|
21963
|
+
},{}],97:[function(_dereq_,module,exports){
|
|
21927
21964
|
/**
|
|
21928
21965
|
* Copyright 2012-2020, Plotly, Inc.
|
|
21929
21966
|
* All rights reserved.
|
|
@@ -23120,7 +23157,7 @@ drawing.setTextPointsScale = function(selection, xScale, yScale) {
|
|
|
23120
23157
|
});
|
|
23121
23158
|
};
|
|
23122
23159
|
|
|
23123
|
-
},{"../../components/fx/helpers":
|
|
23160
|
+
},{"../../components/fx/helpers":111,"../../constants/alignment":177,"../../constants/interactions":180,"../../constants/xmlns_namespaces":182,"../../lib":202,"../../lib/svg_text_utils":224,"../../registry":290,"../../traces/scatter/make_bubble_size_func":347,"../../traces/scatter/subtypes":355,"../color":75,"../colorscale":87,"./symbol_defs":98,"d3":9,"fast-isnumeric":11,"tinycolor2":58}],98:[function(_dereq_,module,exports){
|
|
23124
23161
|
/**
|
|
23125
23162
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23126
23163
|
* All rights reserved.
|
|
@@ -23684,7 +23721,7 @@ module.exports = {
|
|
|
23684
23721
|
}
|
|
23685
23722
|
};
|
|
23686
23723
|
|
|
23687
|
-
},{"d3":9}],
|
|
23724
|
+
},{"d3":9}],99:[function(_dereq_,module,exports){
|
|
23688
23725
|
/**
|
|
23689
23726
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23690
23727
|
* All rights reserved.
|
|
@@ -23799,7 +23836,7 @@ module.exports = {
|
|
|
23799
23836
|
}
|
|
23800
23837
|
};
|
|
23801
23838
|
|
|
23802
|
-
},{}],
|
|
23839
|
+
},{}],100:[function(_dereq_,module,exports){
|
|
23803
23840
|
/**
|
|
23804
23841
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23805
23842
|
* All rights reserved.
|
|
@@ -23885,7 +23922,7 @@ function calcOneAxis(calcTrace, trace, axis, coord) {
|
|
|
23885
23922
|
baseExtremes.max = baseExtremes.max.concat(extremes.max);
|
|
23886
23923
|
}
|
|
23887
23924
|
|
|
23888
|
-
},{"../../lib":
|
|
23925
|
+
},{"../../lib":202,"../../plots/cartesian/axes":248,"../../registry":290,"./compute_error":101,"fast-isnumeric":11}],101:[function(_dereq_,module,exports){
|
|
23889
23926
|
/**
|
|
23890
23927
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23891
23928
|
* All rights reserved.
|
|
@@ -23986,7 +24023,7 @@ function makeComputeErrorValue(type, value) {
|
|
|
23986
24023
|
}
|
|
23987
24024
|
}
|
|
23988
24025
|
|
|
23989
|
-
},{}],
|
|
24026
|
+
},{}],102:[function(_dereq_,module,exports){
|
|
23990
24027
|
/**
|
|
23991
24028
|
* Copyright 2012-2020, Plotly, Inc.
|
|
23992
24029
|
* All rights reserved.
|
|
@@ -24061,7 +24098,7 @@ module.exports = function(traceIn, traceOut, defaultColor, opts) {
|
|
|
24061
24098
|
}
|
|
24062
24099
|
};
|
|
24063
24100
|
|
|
24064
|
-
},{"../../lib":
|
|
24101
|
+
},{"../../lib":202,"../../plot_api/plot_template":237,"../../registry":290,"./attributes":99,"fast-isnumeric":11}],103:[function(_dereq_,module,exports){
|
|
24065
24102
|
/**
|
|
24066
24103
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24067
24104
|
* All rights reserved.
|
|
@@ -24130,7 +24167,7 @@ function hoverInfo(calcPoint, trace, hoverPoint) {
|
|
|
24130
24167
|
}
|
|
24131
24168
|
}
|
|
24132
24169
|
|
|
24133
|
-
},{"../../lib":
|
|
24170
|
+
},{"../../lib":202,"../../plot_api/edit_types":230,"./attributes":99,"./calc":100,"./compute_error":101,"./defaults":102,"./plot":104,"./style":105}],104:[function(_dereq_,module,exports){
|
|
24134
24171
|
/**
|
|
24135
24172
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24136
24173
|
* All rights reserved.
|
|
@@ -24302,7 +24339,7 @@ function errorCoords(d, xa, ya) {
|
|
|
24302
24339
|
return out;
|
|
24303
24340
|
}
|
|
24304
24341
|
|
|
24305
|
-
},{"../../traces/scatter/subtypes":
|
|
24342
|
+
},{"../../traces/scatter/subtypes":355,"../drawing":97,"d3":9,"fast-isnumeric":11}],105:[function(_dereq_,module,exports){
|
|
24306
24343
|
/**
|
|
24307
24344
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24308
24345
|
* All rights reserved.
|
|
@@ -24339,7 +24376,7 @@ module.exports = function style(traces) {
|
|
|
24339
24376
|
});
|
|
24340
24377
|
};
|
|
24341
24378
|
|
|
24342
|
-
},{"../color":
|
|
24379
|
+
},{"../color":75,"d3":9}],106:[function(_dereq_,module,exports){
|
|
24343
24380
|
/**
|
|
24344
24381
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24345
24382
|
* All rights reserved.
|
|
@@ -24375,7 +24412,7 @@ module.exports = {
|
|
|
24375
24412
|
}
|
|
24376
24413
|
};
|
|
24377
24414
|
|
|
24378
|
-
},{"../../lib/extend":
|
|
24415
|
+
},{"../../lib/extend":196,"../../plots/font_attributes":276,"./layout_attributes":116}],107:[function(_dereq_,module,exports){
|
|
24379
24416
|
/**
|
|
24380
24417
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24381
24418
|
* All rights reserved.
|
|
@@ -24434,7 +24471,7 @@ function paste(traceAttr, cd, cdAttr, fn) {
|
|
|
24434
24471
|
}
|
|
24435
24472
|
}
|
|
24436
24473
|
|
|
24437
|
-
},{"../../lib":
|
|
24474
|
+
},{"../../lib":202,"../../registry":290}],108:[function(_dereq_,module,exports){
|
|
24438
24475
|
/**
|
|
24439
24476
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24440
24477
|
* All rights reserved.
|
|
@@ -24471,7 +24508,7 @@ module.exports = function click(gd, evt, subplot) {
|
|
|
24471
24508
|
}
|
|
24472
24509
|
};
|
|
24473
24510
|
|
|
24474
|
-
},{"../../registry":
|
|
24511
|
+
},{"../../registry":290,"./hover":112}],109:[function(_dereq_,module,exports){
|
|
24475
24512
|
/**
|
|
24476
24513
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24477
24514
|
* All rights reserved.
|
|
@@ -24503,7 +24540,7 @@ module.exports = {
|
|
|
24503
24540
|
HOVERID: '-hover'
|
|
24504
24541
|
};
|
|
24505
24542
|
|
|
24506
|
-
},{}],
|
|
24543
|
+
},{}],110:[function(_dereq_,module,exports){
|
|
24507
24544
|
/**
|
|
24508
24545
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24509
24546
|
* All rights reserved.
|
|
@@ -24529,7 +24566,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
24529
24566
|
handleHoverLabelDefaults(traceIn, traceOut, coerce, opts);
|
|
24530
24567
|
};
|
|
24531
24568
|
|
|
24532
|
-
},{"../../lib":
|
|
24569
|
+
},{"../../lib":202,"./attributes":106,"./hoverlabel_defaults":113}],111:[function(_dereq_,module,exports){
|
|
24533
24570
|
/**
|
|
24534
24571
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24535
24572
|
* All rights reserved.
|
|
@@ -24791,7 +24828,7 @@ exports.isXYhover = function(hovermode) {
|
|
|
24791
24828
|
return !!xyHoverMode[hovermode];
|
|
24792
24829
|
};
|
|
24793
24830
|
|
|
24794
|
-
},{"../../lib":
|
|
24831
|
+
},{"../../lib":202}],112:[function(_dereq_,module,exports){
|
|
24795
24832
|
/**
|
|
24796
24833
|
* Copyright 2012-2020, Plotly, Inc.
|
|
24797
24834
|
* All rights reserved.
|
|
@@ -26100,7 +26137,7 @@ function getHoverLabelText(d, showCommonLabel, hovermode, fullLayout, t0, g) {
|
|
|
26100
26137
|
|
|
26101
26138
|
// Make groups of touching points, and within each group
|
|
26102
26139
|
// move each point so that no labels overlap, but the average
|
|
26103
|
-
// label position is the same as it was before moving.
|
|
26140
|
+
// label position is the same as it was before moving. Incidentally,
|
|
26104
26141
|
// this is equivalent to saying all the labels are on equal linear
|
|
26105
26142
|
// springs about their initial position. Initially, each point is
|
|
26106
26143
|
// its own group, but as we find overlaps we will clump the points.
|
|
@@ -26663,7 +26700,7 @@ function plainText(s, len) {
|
|
|
26663
26700
|
});
|
|
26664
26701
|
}
|
|
26665
26702
|
|
|
26666
|
-
},{"../../lib":
|
|
26703
|
+
},{"../../lib":202,"../../lib/events":195,"../../lib/override_cursor":213,"../../lib/svg_text_utils":224,"../../plots/cartesian/axes":248,"../../registry":290,"../color":75,"../dragelement":94,"../drawing":97,"../legend/defaults":127,"../legend/draw":128,"./constants":109,"./helpers":111,"d3":9,"fast-isnumeric":11,"tinycolor2":58}],113:[function(_dereq_,module,exports){
|
|
26667
26704
|
/**
|
|
26668
26705
|
* Copyright 2012-2020, Plotly, Inc.
|
|
26669
26706
|
* All rights reserved.
|
|
@@ -26709,7 +26746,7 @@ module.exports = function handleHoverLabelDefaults(contIn, contOut, coerce, opts
|
|
|
26709
26746
|
coerce('hoverlabel.align', opts.align);
|
|
26710
26747
|
};
|
|
26711
26748
|
|
|
26712
|
-
},{"../../lib":
|
|
26749
|
+
},{"../../lib":202,"../color":75,"./helpers":111}],114:[function(_dereq_,module,exports){
|
|
26713
26750
|
/**
|
|
26714
26751
|
* Copyright 2012-2020, Plotly, Inc.
|
|
26715
26752
|
* All rights reserved.
|
|
@@ -26765,7 +26802,7 @@ function isHoriz(fullData, fullLayout) {
|
|
|
26765
26802
|
return true;
|
|
26766
26803
|
}
|
|
26767
26804
|
|
|
26768
|
-
},{"../../lib":
|
|
26805
|
+
},{"../../lib":202,"./layout_attributes":116}],115:[function(_dereq_,module,exports){
|
|
26769
26806
|
/**
|
|
26770
26807
|
* Copyright 2012-2020, Plotly, Inc.
|
|
26771
26808
|
* All rights reserved.
|
|
@@ -26844,7 +26881,7 @@ function castHoverinfo(trace, fullLayout, ptNumber) {
|
|
|
26844
26881
|
return Lib.castOption(trace, ptNumber, 'hoverinfo', _coerce);
|
|
26845
26882
|
}
|
|
26846
26883
|
|
|
26847
|
-
},{"../../lib":
|
|
26884
|
+
},{"../../lib":202,"../dragelement":94,"./attributes":106,"./calc":107,"./click":108,"./constants":109,"./defaults":110,"./helpers":111,"./hover":112,"./layout_attributes":116,"./layout_defaults":117,"./layout_global_defaults":118,"d3":9}],116:[function(_dereq_,module,exports){
|
|
26848
26885
|
/**
|
|
26849
26886
|
* Copyright 2012-2020, Plotly, Inc.
|
|
26850
26887
|
* All rights reserved.
|
|
@@ -26960,7 +26997,7 @@ module.exports = {
|
|
|
26960
26997
|
}
|
|
26961
26998
|
};
|
|
26962
26999
|
|
|
26963
|
-
},{"../../plots/font_attributes":
|
|
27000
|
+
},{"../../plots/font_attributes":276,"./constants":109}],117:[function(_dereq_,module,exports){
|
|
26964
27001
|
/**
|
|
26965
27002
|
* Copyright 2012-2020, Plotly, Inc.
|
|
26966
27003
|
* All rights reserved.
|
|
@@ -27008,7 +27045,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, fullData) {
|
|
|
27008
27045
|
handleHoverLabelDefaults(layoutIn, layoutOut, coerce);
|
|
27009
27046
|
};
|
|
27010
27047
|
|
|
27011
|
-
},{"../../lib":
|
|
27048
|
+
},{"../../lib":202,"./helpers":111,"./hoverlabel_defaults":113,"./hovermode_defaults":114,"./layout_attributes":116}],118:[function(_dereq_,module,exports){
|
|
27012
27049
|
/**
|
|
27013
27050
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27014
27051
|
* All rights reserved.
|
|
@@ -27031,7 +27068,7 @@ module.exports = function supplyLayoutGlobalDefaults(layoutIn, layoutOut) {
|
|
|
27031
27068
|
handleHoverLabelDefaults(layoutIn, layoutOut, coerce);
|
|
27032
27069
|
};
|
|
27033
27070
|
|
|
27034
|
-
},{"../../lib":
|
|
27071
|
+
},{"../../lib":202,"./hoverlabel_defaults":113,"./layout_attributes":116}],119:[function(_dereq_,module,exports){
|
|
27035
27072
|
/**
|
|
27036
27073
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27037
27074
|
* All rights reserved.
|
|
@@ -27405,7 +27442,7 @@ module.exports = {
|
|
|
27405
27442
|
contentDefaults: contentDefaults
|
|
27406
27443
|
};
|
|
27407
27444
|
|
|
27408
|
-
},{"../../lib":
|
|
27445
|
+
},{"../../lib":202,"../../lib/regex":218,"../../plot_api/plot_template":237,"../../plots/cartesian/constants":254,"../../plots/domain":275}],120:[function(_dereq_,module,exports){
|
|
27409
27446
|
/**
|
|
27410
27447
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27411
27448
|
* All rights reserved.
|
|
@@ -27541,7 +27578,7 @@ module.exports = templatedArray('image', {
|
|
|
27541
27578
|
editType: 'arraydraw'
|
|
27542
27579
|
});
|
|
27543
27580
|
|
|
27544
|
-
},{"../../constants/axis_placeable_objects":
|
|
27581
|
+
},{"../../constants/axis_placeable_objects":178,"../../plot_api/plot_template":237,"../../plots/cartesian/constants":254}],121:[function(_dereq_,module,exports){
|
|
27545
27582
|
/**
|
|
27546
27583
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27547
27584
|
* All rights reserved.
|
|
@@ -27622,7 +27659,7 @@ module.exports = function convertCoords(gd, ax, newType, doExtra) {
|
|
|
27622
27659
|
}
|
|
27623
27660
|
};
|
|
27624
27661
|
|
|
27625
|
-
},{"../../lib/to_log_range":
|
|
27662
|
+
},{"../../lib/to_log_range":226,"fast-isnumeric":11}],122:[function(_dereq_,module,exports){
|
|
27626
27663
|
/**
|
|
27627
27664
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27628
27665
|
* All rights reserved.
|
|
@@ -27687,7 +27724,7 @@ function imageDefaults(imageIn, imageOut, fullLayout) {
|
|
|
27687
27724
|
return imageOut;
|
|
27688
27725
|
}
|
|
27689
27726
|
|
|
27690
|
-
},{"../../lib":
|
|
27727
|
+
},{"../../lib":202,"../../plots/array_container_defaults":243,"../../plots/cartesian/axes":248,"./attributes":120}],123:[function(_dereq_,module,exports){
|
|
27691
27728
|
/**
|
|
27692
27729
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27693
27730
|
* All rights reserved.
|
|
@@ -27945,7 +27982,7 @@ module.exports = function draw(gd) {
|
|
|
27945
27982
|
}
|
|
27946
27983
|
};
|
|
27947
27984
|
|
|
27948
|
-
},{"../../constants/xmlns_namespaces":
|
|
27985
|
+
},{"../../constants/xmlns_namespaces":182,"../../plots/cartesian/axes":248,"../../plots/cartesian/axis_ids":251,"../drawing":97,"d3":9}],124:[function(_dereq_,module,exports){
|
|
27949
27986
|
/**
|
|
27950
27987
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27951
27988
|
* All rights reserved.
|
|
@@ -27969,7 +28006,7 @@ module.exports = {
|
|
|
27969
28006
|
convertCoords: _dereq_('./convert_coords')
|
|
27970
28007
|
};
|
|
27971
28008
|
|
|
27972
|
-
},{"../../plots/cartesian/include_components":
|
|
28009
|
+
},{"../../plots/cartesian/include_components":260,"./attributes":120,"./convert_coords":121,"./defaults":122,"./draw":123}],125:[function(_dereq_,module,exports){
|
|
27973
28010
|
/**
|
|
27974
28011
|
* Copyright 2012-2020, Plotly, Inc.
|
|
27975
28012
|
* All rights reserved.
|
|
@@ -28138,7 +28175,7 @@ module.exports = {
|
|
|
28138
28175
|
editType: 'legend'
|
|
28139
28176
|
};
|
|
28140
28177
|
|
|
28141
|
-
},{"../../plots/font_attributes":
|
|
28178
|
+
},{"../../plots/font_attributes":276,"../color/attributes":74}],126:[function(_dereq_,module,exports){
|
|
28142
28179
|
/**
|
|
28143
28180
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28144
28181
|
* All rights reserved.
|
|
@@ -28162,7 +28199,7 @@ module.exports = {
|
|
|
28162
28199
|
itemGap: 5
|
|
28163
28200
|
};
|
|
28164
28201
|
|
|
28165
|
-
},{}],
|
|
28202
|
+
},{}],127:[function(_dereq_,module,exports){
|
|
28166
28203
|
/**
|
|
28167
28204
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28168
28205
|
* All rights reserved.
|
|
@@ -28297,7 +28334,7 @@ module.exports = function legendDefaults(layoutIn, layoutOut, fullData) {
|
|
|
28297
28334
|
}
|
|
28298
28335
|
};
|
|
28299
28336
|
|
|
28300
|
-
},{"../../lib":
|
|
28337
|
+
},{"../../lib":202,"../../plot_api/plot_template":237,"../../plots/layout_attributes":280,"../../registry":290,"./attributes":125,"./helpers":131}],128:[function(_dereq_,module,exports){
|
|
28301
28338
|
/**
|
|
28302
28339
|
* Copyright 2012-2020, Plotly, Inc.
|
|
28303
28340
|
* All rights reserved.
|
|
@@ -29094,7 +29131,7 @@ function getYanchor(opts) {
|
|
|
29094
29131
|
'top';
|
|
29095
29132
|
}
|
|
29096
29133
|
|
|
29097
|
-
},{"../../constants/alignment":
|
|
29134
|
+
},{"../../constants/alignment":177,"../../lib":202,"../../lib/events":195,"../../lib/svg_text_utils":224,"../../plots/plots":282,"../../registry":290,"../color":75,"../dragelement":94,"../drawing":97,"./constants":126,"./get_legend_data":129,"./handle_click":130,"./helpers":131,"./style":133,"d3":9}],129:[function(_dereq_,module,exports){
|
|
29098
29135
|
/**
|
|
29099
29136
|
* Copyright 2012-2020, Plotly, Inc.
|
|
29100
29137
|
* All rights reserved.
|
|
@@ -29203,7 +29240,7 @@ module.exports = function getLegendData(calcdata, opts) {
|
|
|
29203
29240
|
return legendData;
|
|
29204
29241
|
};
|
|
29205
29242
|
|
|
29206
|
-
},{"../../registry":
|
|
29243
|
+
},{"../../registry":290,"./helpers":131}],130:[function(_dereq_,module,exports){
|
|
29207
29244
|
/**
|
|
29208
29245
|
* Copyright 2012-2020, Plotly, Inc.
|
|
29209
29246
|
* All rights reserved.
|
|
@@ -29442,7 +29479,7 @@ module.exports = function handleClick(g, gd, numClicks) {
|
|
|
29442
29479
|
}
|
|
29443
29480
|
};
|
|
29444
29481
|
|
|
29445
|
-
},{"../../lib":
|
|
29482
|
+
},{"../../lib":202,"../../registry":290}],131:[function(_dereq_,module,exports){
|
|
29446
29483
|
/**
|
|
29447
29484
|
* Copyright 2012-2020, Plotly, Inc.
|
|
29448
29485
|
* All rights reserved.
|
|
@@ -29466,7 +29503,7 @@ exports.isReversed = function isReversed(legendLayout) {
|
|
|
29466
29503
|
return (legendLayout.traceorder || '').indexOf('reversed') !== -1;
|
|
29467
29504
|
};
|
|
29468
29505
|
|
|
29469
|
-
},{}],
|
|
29506
|
+
},{}],132:[function(_dereq_,module,exports){
|
|
29470
29507
|
/**
|
|
29471
29508
|
* Copyright 2012-2020, Plotly, Inc.
|
|
29472
29509
|
* All rights reserved.
|
|
@@ -29490,7 +29527,7 @@ module.exports = {
|
|
|
29490
29527
|
style: _dereq_('./style')
|
|
29491
29528
|
};
|
|
29492
29529
|
|
|
29493
|
-
},{"./attributes":
|
|
29530
|
+
},{"./attributes":125,"./defaults":127,"./draw":128,"./style":133}],133:[function(_dereq_,module,exports){
|
|
29494
29531
|
/**
|
|
29495
29532
|
* Copyright 2012-2020, Plotly, Inc.
|
|
29496
29533
|
* All rights reserved.
|
|
@@ -30123,7 +30160,7 @@ function getGradientDirection(reversescale, isRadial) {
|
|
|
30123
30160
|
return str + (reversescale ? '' : 'reversed');
|
|
30124
30161
|
}
|
|
30125
30162
|
|
|
30126
|
-
},{"../../lib":
|
|
30163
|
+
},{"../../lib":202,"../../registry":290,"../../traces/pie/helpers":322,"../../traces/pie/style_one":328,"../../traces/scatter/subtypes":355,"../color":75,"../colorscale/helpers":86,"../drawing":97,"./constants":126,"d3":9}],134:[function(_dereq_,module,exports){
|
|
30127
30164
|
/**
|
|
30128
30165
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30129
30166
|
* All rights reserved.
|
|
@@ -30859,7 +30896,7 @@ function resetView(gd, subplotType) {
|
|
|
30859
30896
|
Registry.call('_guiRelayout', gd, aObj);
|
|
30860
30897
|
}
|
|
30861
30898
|
|
|
30862
|
-
},{"../../fonts/ploticon":
|
|
30899
|
+
},{"../../fonts/ploticon":185,"../../lib":202,"../../plots/cartesian/axis_ids":251,"../../plots/plots":282,"../../registry":290,"../shapes/draw":156}],135:[function(_dereq_,module,exports){
|
|
30863
30900
|
/**
|
|
30864
30901
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30865
30902
|
* All rights reserved.
|
|
@@ -30873,7 +30910,7 @@ function resetView(gd, subplotType) {
|
|
|
30873
30910
|
|
|
30874
30911
|
exports.manage = _dereq_('./manage');
|
|
30875
30912
|
|
|
30876
|
-
},{"./manage":
|
|
30913
|
+
},{"./manage":136}],136:[function(_dereq_,module,exports){
|
|
30877
30914
|
/**
|
|
30878
30915
|
* Copyright 2012-2020, Plotly, Inc.
|
|
30879
30916
|
* All rights reserved.
|
|
@@ -31169,7 +31206,7 @@ function fillCustomButton(customButtons) {
|
|
|
31169
31206
|
return customButtons;
|
|
31170
31207
|
}
|
|
31171
31208
|
|
|
31172
|
-
},{"../../plots/cartesian/axis_ids":
|
|
31209
|
+
},{"../../plots/cartesian/axis_ids":251,"../../registry":290,"../../traces/scatter/subtypes":355,"../fx/helpers":111,"./buttons":134,"./modebar":137}],137:[function(_dereq_,module,exports){
|
|
31173
31210
|
/**
|
|
31174
31211
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31175
31212
|
* All rights reserved.
|
|
@@ -31515,7 +31552,7 @@ function createModeBar(gd, buttons) {
|
|
|
31515
31552
|
|
|
31516
31553
|
module.exports = createModeBar;
|
|
31517
31554
|
|
|
31518
|
-
},{"../../fonts/ploticon":
|
|
31555
|
+
},{"../../fonts/ploticon":185,"../../lib":202,"d3":9,"fast-isnumeric":11}],138:[function(_dereq_,module,exports){
|
|
31519
31556
|
/**
|
|
31520
31557
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31521
31558
|
* All rights reserved.
|
|
@@ -31651,7 +31688,7 @@ module.exports = {
|
|
|
31651
31688
|
editType: 'plot'
|
|
31652
31689
|
};
|
|
31653
31690
|
|
|
31654
|
-
},{"../../plot_api/plot_template":
|
|
31691
|
+
},{"../../plot_api/plot_template":237,"../../plots/font_attributes":276,"../color/attributes":74}],139:[function(_dereq_,module,exports){
|
|
31655
31692
|
/**
|
|
31656
31693
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31657
31694
|
* All rights reserved.
|
|
@@ -31680,7 +31717,7 @@ module.exports = {
|
|
|
31680
31717
|
darkAmount: 10
|
|
31681
31718
|
};
|
|
31682
31719
|
|
|
31683
|
-
},{}],
|
|
31720
|
+
},{}],140:[function(_dereq_,module,exports){
|
|
31684
31721
|
/**
|
|
31685
31722
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31686
31723
|
* All rights reserved.
|
|
@@ -31772,7 +31809,7 @@ function getPosDflt(containerOut, layout, counterAxes) {
|
|
|
31772
31809
|
return [containerOut.domain[0], posY + constants.yPad];
|
|
31773
31810
|
}
|
|
31774
31811
|
|
|
31775
|
-
},{"../../lib":
|
|
31812
|
+
},{"../../lib":202,"../../plot_api/plot_template":237,"../../plots/array_container_defaults":243,"../color":75,"./attributes":138,"./constants":139}],141:[function(_dereq_,module,exports){
|
|
31776
31813
|
/**
|
|
31777
31814
|
* Copyright 2012-2020, Plotly, Inc.
|
|
31778
31815
|
* All rights reserved.
|
|
@@ -32027,7 +32064,7 @@ function reposition(gd, buttons, opts, axName, selector) {
|
|
|
32027
32064
|
selector.attr('transform', strTranslate(lx, ly));
|
|
32028
32065
|
}
|
|
32029
32066
|
|
|
32030
|
-
},{"../../constants/alignment":
|
|
32067
|
+
},{"../../constants/alignment":177,"../../lib":202,"../../lib/svg_text_utils":224,"../../plots/cartesian/axis_ids":251,"../../plots/plots":282,"../../registry":290,"../color":75,"../drawing":97,"./constants":139,"./get_update_object":142,"d3":9}],142:[function(_dereq_,module,exports){
|
|
32031
32068
|
/**
|
|
32032
32069
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32033
32070
|
* All rights reserved.
|
|
@@ -32081,7 +32118,7 @@ function getXRange(axisLayout, buttonLayout) {
|
|
|
32081
32118
|
return [range0, range1];
|
|
32082
32119
|
}
|
|
32083
32120
|
|
|
32084
|
-
},{"d3":9}],
|
|
32121
|
+
},{"d3":9}],143:[function(_dereq_,module,exports){
|
|
32085
32122
|
/**
|
|
32086
32123
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32087
32124
|
* All rights reserved.
|
|
@@ -32108,7 +32145,7 @@ module.exports = {
|
|
|
32108
32145
|
draw: _dereq_('./draw')
|
|
32109
32146
|
};
|
|
32110
32147
|
|
|
32111
|
-
},{"./attributes":
|
|
32148
|
+
},{"./attributes":138,"./defaults":140,"./draw":141}],144:[function(_dereq_,module,exports){
|
|
32112
32149
|
/**
|
|
32113
32150
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32114
32151
|
* All rights reserved.
|
|
@@ -32182,7 +32219,7 @@ module.exports = {
|
|
|
32182
32219
|
editType: 'calc'
|
|
32183
32220
|
};
|
|
32184
32221
|
|
|
32185
|
-
},{"../color/attributes":
|
|
32222
|
+
},{"../color/attributes":74}],145:[function(_dereq_,module,exports){
|
|
32186
32223
|
/**
|
|
32187
32224
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32188
32225
|
* All rights reserved.
|
|
@@ -32216,7 +32253,7 @@ module.exports = function calcAutorange(gd) {
|
|
|
32216
32253
|
}
|
|
32217
32254
|
};
|
|
32218
32255
|
|
|
32219
|
-
},{"../../plots/cartesian/autorange":
|
|
32256
|
+
},{"../../plots/cartesian/autorange":247,"../../plots/cartesian/axis_ids":251,"./constants":146}],146:[function(_dereq_,module,exports){
|
|
32220
32257
|
/**
|
|
32221
32258
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32222
32259
|
* All rights reserved.
|
|
@@ -32272,7 +32309,7 @@ module.exports = {
|
|
|
32272
32309
|
extraPad: 15
|
|
32273
32310
|
};
|
|
32274
32311
|
|
|
32275
|
-
},{}],
|
|
32312
|
+
},{}],147:[function(_dereq_,module,exports){
|
|
32276
32313
|
/**
|
|
32277
32314
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32278
32315
|
* All rights reserved.
|
|
@@ -32358,7 +32395,7 @@ module.exports = function handleDefaults(layoutIn, layoutOut, axName) {
|
|
|
32358
32395
|
containerOut._input = containerIn;
|
|
32359
32396
|
};
|
|
32360
32397
|
|
|
32361
|
-
},{"../../lib":
|
|
32398
|
+
},{"../../lib":202,"../../plot_api/plot_template":237,"../../plots/cartesian/axis_ids":251,"./attributes":144,"./oppaxis_attributes":151}],148:[function(_dereq_,module,exports){
|
|
32362
32399
|
/**
|
|
32363
32400
|
* Copyright 2012-2020, Plotly, Inc.
|
|
32364
32401
|
* All rights reserved.
|
|
@@ -33002,7 +33039,7 @@ function drawGrabbers(rangeSlider, gd, axisOpts, opts) {
|
|
|
33002
33039
|
grabAreaMax.attr('height', opts._height);
|
|
33003
33040
|
}
|
|
33004
33041
|
|
|
33005
|
-
},{"../../lib":
|
|
33042
|
+
},{"../../lib":202,"../../lib/setcursor":222,"../../plots/cartesian":261,"../../plots/cartesian/axis_ids":251,"../../plots/plots":282,"../../registry":290,"../color":75,"../dragelement":94,"../drawing":97,"../titles":170,"./constants":146,"d3":9}],149:[function(_dereq_,module,exports){
|
|
33006
33043
|
/**
|
|
33007
33044
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33008
33045
|
* All rights reserved.
|
|
@@ -33077,7 +33114,7 @@ exports.autoMarginOpts = function(gd, ax) {
|
|
|
33077
33114
|
};
|
|
33078
33115
|
};
|
|
33079
33116
|
|
|
33080
|
-
},{"../../constants/alignment":
|
|
33117
|
+
},{"../../constants/alignment":177,"../../lib/svg_text_utils":224,"../../plots/cartesian/axis_ids":251,"./constants":146}],150:[function(_dereq_,module,exports){
|
|
33081
33118
|
/**
|
|
33082
33119
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33083
33120
|
* All rights reserved.
|
|
@@ -33116,7 +33153,7 @@ module.exports = {
|
|
|
33116
33153
|
autoMarginOpts: helpers.autoMarginOpts
|
|
33117
33154
|
};
|
|
33118
33155
|
|
|
33119
|
-
},{"../../lib":
|
|
33156
|
+
},{"../../lib":202,"./attributes":144,"./calc_autorange":145,"./defaults":147,"./draw":148,"./helpers":149,"./oppaxis_attributes":151}],151:[function(_dereq_,module,exports){
|
|
33120
33157
|
/**
|
|
33121
33158
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33122
33159
|
* All rights reserved.
|
|
@@ -33154,7 +33191,7 @@ module.exports = {
|
|
|
33154
33191
|
editType: 'calc'
|
|
33155
33192
|
};
|
|
33156
33193
|
|
|
33157
|
-
},{}],
|
|
33194
|
+
},{}],152:[function(_dereq_,module,exports){
|
|
33158
33195
|
/**
|
|
33159
33196
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33160
33197
|
* All rights reserved.
|
|
@@ -33307,7 +33344,7 @@ module.exports = templatedArray('shape', {
|
|
|
33307
33344
|
editType: 'arraydraw'
|
|
33308
33345
|
});
|
|
33309
33346
|
|
|
33310
|
-
},{"../../constants/axis_placeable_objects":
|
|
33347
|
+
},{"../../constants/axis_placeable_objects":178,"../../lib/extend":196,"../../plot_api/plot_template":237,"../../traces/scatter/attributes":330,"../annotations/attributes":60,"../drawing/attributes":96}],153:[function(_dereq_,module,exports){
|
|
33311
33348
|
/**
|
|
33312
33349
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33313
33350
|
* All rights reserved.
|
|
@@ -33427,7 +33464,7 @@ function shapeBounds(ax, v0, v1, path, paramsToUse) {
|
|
|
33427
33464
|
if(max >= min) return [min, max];
|
|
33428
33465
|
}
|
|
33429
33466
|
|
|
33430
|
-
},{"../../lib":
|
|
33467
|
+
},{"../../lib":202,"../../plots/cartesian/axes":248,"./constants":154,"./helpers":163}],154:[function(_dereq_,module,exports){
|
|
33431
33468
|
/**
|
|
33432
33469
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33433
33470
|
* All rights reserved.
|
|
@@ -33491,7 +33528,7 @@ module.exports = {
|
|
|
33491
33528
|
}
|
|
33492
33529
|
};
|
|
33493
33530
|
|
|
33494
|
-
},{}],
|
|
33531
|
+
},{}],155:[function(_dereq_,module,exports){
|
|
33495
33532
|
/**
|
|
33496
33533
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33497
33534
|
* All rights reserved.
|
|
@@ -33622,7 +33659,7 @@ function handleShapeDefaults(shapeIn, shapeOut, fullLayout) {
|
|
|
33622
33659
|
}
|
|
33623
33660
|
}
|
|
33624
33661
|
|
|
33625
|
-
},{"../../lib":
|
|
33662
|
+
},{"../../lib":202,"../../plots/array_container_defaults":243,"../../plots/cartesian/axes":248,"./attributes":152,"./helpers":163}],156:[function(_dereq_,module,exports){
|
|
33626
33663
|
/**
|
|
33627
33664
|
* Copyright 2012-2020, Plotly, Inc.
|
|
33628
33665
|
* All rights reserved.
|
|
@@ -34396,7 +34433,7 @@ function eraseActiveShape(gd) {
|
|
|
34396
34433
|
}
|
|
34397
34434
|
}
|
|
34398
34435
|
|
|
34399
|
-
},{"../../lib":
|
|
34436
|
+
},{"../../lib":202,"../../lib/setcursor":222,"../../plot_api/plot_template":237,"../../plots/cartesian/axes":248,"../../plots/cartesian/handle_outline":258,"../../registry":290,"../color":75,"../dragelement":94,"../drawing":97,"./constants":154,"./draw_newshape/display_outlines":160,"./draw_newshape/helpers":161,"./helpers":163}],157:[function(_dereq_,module,exports){
|
|
34400
34437
|
/**
|
|
34401
34438
|
* Copyright 2012-2020, Plotly, Inc.
|
|
34402
34439
|
* All rights reserved.
|
|
@@ -34499,7 +34536,7 @@ module.exports = {
|
|
|
34499
34536
|
}
|
|
34500
34537
|
};
|
|
34501
34538
|
|
|
34502
|
-
},{"../../../lib/extend":
|
|
34539
|
+
},{"../../../lib/extend":196,"../../drawing/attributes":96}],158:[function(_dereq_,module,exports){
|
|
34503
34540
|
/**
|
|
34504
34541
|
* Copyright 2012-2020, Plotly, Inc.
|
|
34505
34542
|
* All rights reserved.
|
|
@@ -34523,7 +34560,7 @@ module.exports = {
|
|
|
34523
34560
|
SQRT2: Math.sqrt(2)
|
|
34524
34561
|
};
|
|
34525
34562
|
|
|
34526
|
-
},{}],
|
|
34563
|
+
},{}],159:[function(_dereq_,module,exports){
|
|
34527
34564
|
/**
|
|
34528
34565
|
* Copyright 2012-2020, Plotly, Inc.
|
|
34529
34566
|
* All rights reserved.
|
|
@@ -34555,7 +34592,7 @@ module.exports = function supplyDrawNewShapeDefaults(layoutIn, layoutOut, coerce
|
|
|
34555
34592
|
coerce('activeshape.opacity');
|
|
34556
34593
|
};
|
|
34557
34594
|
|
|
34558
|
-
},{"../../color":
|
|
34595
|
+
},{"../../color":75}],160:[function(_dereq_,module,exports){
|
|
34559
34596
|
/**
|
|
34560
34597
|
* Copyright 2012-2020, Plotly, Inc.
|
|
34561
34598
|
* All rights reserved.
|
|
@@ -34850,7 +34887,7 @@ function recordPositions(polygonsOut, polygonsIn) {
|
|
|
34850
34887
|
return polygonsOut;
|
|
34851
34888
|
}
|
|
34852
34889
|
|
|
34853
|
-
},{"../../../plots/cartesian/handle_outline":
|
|
34890
|
+
},{"../../../plots/cartesian/handle_outline":258,"../../../registry":290,"../../dragelement":94,"../../dragelement/helpers":93,"./constants":158,"./helpers":161,"./newshapes":162}],161:[function(_dereq_,module,exports){
|
|
34854
34891
|
/**
|
|
34855
34892
|
* Copyright 2012-2020, Plotly, Inc.
|
|
34856
34893
|
* All rights reserved.
|
|
@@ -35188,7 +35225,7 @@ exports.ellipseOver = function(pos) {
|
|
|
35188
35225
|
};
|
|
35189
35226
|
};
|
|
35190
35227
|
|
|
35191
|
-
},{"../../../plots/cartesian/helpers":
|
|
35228
|
+
},{"../../../plots/cartesian/helpers":259,"./constants":158,"parse-svg-path":48}],162:[function(_dereq_,module,exports){
|
|
35192
35229
|
/**
|
|
35193
35230
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35194
35231
|
* All rights reserved.
|
|
@@ -35447,7 +35484,7 @@ function fixDatesForPaths(polygons, xaxis, yaxis) {
|
|
|
35447
35484
|
return polygons;
|
|
35448
35485
|
}
|
|
35449
35486
|
|
|
35450
|
-
},{"../../../plots/cartesian/handle_outline":
|
|
35487
|
+
},{"../../../plots/cartesian/handle_outline":258,"../../../plots/cartesian/helpers":259,"../../dragelement/helpers":93,"./constants":158,"./helpers":161}],163:[function(_dereq_,module,exports){
|
|
35451
35488
|
/**
|
|
35452
35489
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35453
35490
|
* All rights reserved.
|
|
@@ -35605,7 +35642,7 @@ exports.makeOptionsAndPlotinfo = function(gd, index) {
|
|
|
35605
35642
|
};
|
|
35606
35643
|
};
|
|
35607
35644
|
|
|
35608
|
-
},{"../../lib":
|
|
35645
|
+
},{"../../lib":202,"./constants":154}],164:[function(_dereq_,module,exports){
|
|
35609
35646
|
/**
|
|
35610
35647
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35611
35648
|
* All rights reserved.
|
|
@@ -35633,7 +35670,7 @@ module.exports = {
|
|
|
35633
35670
|
drawOne: drawModule.drawOne
|
|
35634
35671
|
};
|
|
35635
35672
|
|
|
35636
|
-
},{"../../plots/cartesian/include_components":
|
|
35673
|
+
},{"../../plots/cartesian/include_components":260,"./attributes":152,"./calc_autorange":153,"./defaults":155,"./draw":156,"./draw_newshape/defaults":159}],165:[function(_dereq_,module,exports){
|
|
35637
35674
|
/**
|
|
35638
35675
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35639
35676
|
* All rights reserved.
|
|
@@ -35876,7 +35913,7 @@ module.exports = overrideAll(templatedArray('slider', {
|
|
|
35876
35913
|
}
|
|
35877
35914
|
}), 'arraydraw', 'from-root');
|
|
35878
35915
|
|
|
35879
|
-
},{"../../lib/extend":
|
|
35916
|
+
},{"../../lib/extend":196,"../../plot_api/edit_types":230,"../../plot_api/plot_template":237,"../../plots/animation_attributes":242,"../../plots/font_attributes":276,"../../plots/pad_attributes":281,"./constants":166}],166:[function(_dereq_,module,exports){
|
|
35880
35917
|
/**
|
|
35881
35918
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35882
35919
|
* All rights reserved.
|
|
@@ -35970,7 +36007,7 @@ module.exports = {
|
|
|
35970
36007
|
currentValueInset: 0,
|
|
35971
36008
|
};
|
|
35972
36009
|
|
|
35973
|
-
},{}],
|
|
36010
|
+
},{}],167:[function(_dereq_,module,exports){
|
|
35974
36011
|
/**
|
|
35975
36012
|
* Copyright 2012-2020, Plotly, Inc.
|
|
35976
36013
|
* All rights reserved.
|
|
@@ -36085,7 +36122,7 @@ function stepDefaults(valueIn, valueOut) {
|
|
|
36085
36122
|
}
|
|
36086
36123
|
}
|
|
36087
36124
|
|
|
36088
|
-
},{"../../lib":
|
|
36125
|
+
},{"../../lib":202,"../../plots/array_container_defaults":243,"./attributes":165,"./constants":166}],168:[function(_dereq_,module,exports){
|
|
36089
36126
|
/**
|
|
36090
36127
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36091
36128
|
* All rights reserved.
|
|
@@ -36659,7 +36696,7 @@ function setGripPosition(sliderGroup, sliderOpts, doTransition) {
|
|
|
36659
36696
|
.ease(sliderOpts.transition.easing);
|
|
36660
36697
|
}
|
|
36661
36698
|
|
|
36662
|
-
// Drawing.setTranslate doesn't work here
|
|
36699
|
+
// Drawing.setTranslate doesn't work here because of the transition duck-typing.
|
|
36663
36700
|
// It's also not necessary because there are no other transitions to preserve.
|
|
36664
36701
|
el.attr('transform', strTranslate(x - constants.gripWidth * 0.5, sliderOpts._dims.currentValueTotalHeight));
|
|
36665
36702
|
}
|
|
@@ -36716,7 +36753,7 @@ function drawRail(sliderGroup, sliderOpts) {
|
|
|
36716
36753
|
);
|
|
36717
36754
|
}
|
|
36718
36755
|
|
|
36719
|
-
},{"../../constants/alignment":
|
|
36756
|
+
},{"../../constants/alignment":177,"../../lib":202,"../../lib/svg_text_utils":224,"../../plot_api/plot_template":237,"../../plots/plots":282,"../color":75,"../drawing":97,"./constants":166,"d3":9}],169:[function(_dereq_,module,exports){
|
|
36720
36757
|
/**
|
|
36721
36758
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36722
36759
|
* All rights reserved.
|
|
@@ -36739,7 +36776,7 @@ module.exports = {
|
|
|
36739
36776
|
draw: _dereq_('./draw')
|
|
36740
36777
|
};
|
|
36741
36778
|
|
|
36742
|
-
},{"./attributes":
|
|
36779
|
+
},{"./attributes":165,"./constants":166,"./defaults":167,"./draw":168}],170:[function(_dereq_,module,exports){
|
|
36743
36780
|
/**
|
|
36744
36781
|
* Copyright 2012-2020, Plotly, Inc.
|
|
36745
36782
|
* All rights reserved.
|
|
@@ -37007,7 +37044,7 @@ module.exports = {
|
|
|
37007
37044
|
draw: draw
|
|
37008
37045
|
};
|
|
37009
37046
|
|
|
37010
|
-
},{"../../constants/alignment":
|
|
37047
|
+
},{"../../constants/alignment":177,"../../constants/interactions":180,"../../lib":202,"../../lib/svg_text_utils":224,"../../plots/plots":282,"../../registry":290,"../color":75,"../drawing":97,"d3":9,"fast-isnumeric":11}],171:[function(_dereq_,module,exports){
|
|
37011
37048
|
/**
|
|
37012
37049
|
* Copyright 2012-2020, Plotly, Inc.
|
|
37013
37050
|
* All rights reserved.
|
|
@@ -37176,7 +37213,7 @@ module.exports = overrideAll(templatedArray('updatemenu', {
|
|
|
37176
37213
|
}
|
|
37177
37214
|
}), 'arraydraw', 'from-root');
|
|
37178
37215
|
|
|
37179
|
-
},{"../../lib/extend":
|
|
37216
|
+
},{"../../lib/extend":196,"../../plot_api/edit_types":230,"../../plot_api/plot_template":237,"../../plots/font_attributes":276,"../../plots/pad_attributes":281,"../color/attributes":74}],172:[function(_dereq_,module,exports){
|
|
37180
37217
|
/**
|
|
37181
37218
|
* Copyright 2012-2020, Plotly, Inc.
|
|
37182
37219
|
* All rights reserved.
|
|
@@ -37257,7 +37294,7 @@ module.exports = {
|
|
|
37257
37294
|
}
|
|
37258
37295
|
};
|
|
37259
37296
|
|
|
37260
|
-
},{}],
|
|
37297
|
+
},{}],173:[function(_dereq_,module,exports){
|
|
37261
37298
|
/**
|
|
37262
37299
|
* Copyright 2012-2020, Plotly, Inc.
|
|
37263
37300
|
* All rights reserved.
|
|
@@ -37340,7 +37377,7 @@ function buttonDefaults(buttonIn, buttonOut) {
|
|
|
37340
37377
|
}
|
|
37341
37378
|
}
|
|
37342
37379
|
|
|
37343
|
-
},{"../../lib":
|
|
37380
|
+
},{"../../lib":202,"../../plots/array_container_defaults":243,"./attributes":171,"./constants":172}],174:[function(_dereq_,module,exports){
|
|
37344
37381
|
/**
|
|
37345
37382
|
* Copyright 2012-2020, Plotly, Inc.
|
|
37346
37383
|
* All rights reserved.
|
|
@@ -37991,9 +38028,9 @@ function removeAllButtons(gButton, newMenuIndexAttr) {
|
|
|
37991
38028
|
.selectAll('g.' + constants.dropdownButtonClassName).remove();
|
|
37992
38029
|
}
|
|
37993
38030
|
|
|
37994
|
-
},{"../../constants/alignment":
|
|
37995
|
-
arguments[4][
|
|
37996
|
-
},{"./attributes":
|
|
38031
|
+
},{"../../constants/alignment":177,"../../lib":202,"../../lib/svg_text_utils":224,"../../plot_api/plot_template":237,"../../plots/plots":282,"../color":75,"../drawing":97,"./constants":172,"./scrollbox":176,"d3":9}],175:[function(_dereq_,module,exports){
|
|
38032
|
+
arguments[4][169][0].apply(exports,arguments)
|
|
38033
|
+
},{"./attributes":171,"./constants":172,"./defaults":173,"./draw":174,"dup":169}],176:[function(_dereq_,module,exports){
|
|
37997
38034
|
/**
|
|
37998
38035
|
* Copyright 2012-2020, Plotly, Inc.
|
|
37999
38036
|
* All rights reserved.
|
|
@@ -38458,7 +38495,7 @@ ScrollBox.prototype.setTranslate = function setTranslate(translateX, translateY)
|
|
|
38458
38495
|
}
|
|
38459
38496
|
};
|
|
38460
38497
|
|
|
38461
|
-
},{"../../lib":
|
|
38498
|
+
},{"../../lib":202,"../color":75,"../drawing":97,"d3":9}],177:[function(_dereq_,module,exports){
|
|
38462
38499
|
/**
|
|
38463
38500
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38464
38501
|
* All rights reserved.
|
|
@@ -38523,7 +38560,7 @@ module.exports = {
|
|
|
38523
38560
|
}
|
|
38524
38561
|
};
|
|
38525
38562
|
|
|
38526
|
-
},{}],
|
|
38563
|
+
},{}],178:[function(_dereq_,module,exports){
|
|
38527
38564
|
/**
|
|
38528
38565
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38529
38566
|
* All rights reserved.
|
|
@@ -38555,7 +38592,7 @@ module.exports = {
|
|
|
38555
38592
|
}
|
|
38556
38593
|
};
|
|
38557
38594
|
|
|
38558
|
-
},{}],
|
|
38595
|
+
},{}],179:[function(_dereq_,module,exports){
|
|
38559
38596
|
/**
|
|
38560
38597
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38561
38598
|
* All rights reserved.
|
|
@@ -38571,7 +38608,7 @@ module.exports = {
|
|
|
38571
38608
|
DATE_FORMAT_LINK: 'https://github.com/d3/d3-time-format#locale_format'
|
|
38572
38609
|
};
|
|
38573
38610
|
|
|
38574
|
-
},{}],
|
|
38611
|
+
},{}],180:[function(_dereq_,module,exports){
|
|
38575
38612
|
/**
|
|
38576
38613
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38577
38614
|
* All rights reserved.
|
|
@@ -38594,7 +38631,7 @@ module.exports = {
|
|
|
38594
38631
|
DESELECTDIM: 0.2
|
|
38595
38632
|
};
|
|
38596
38633
|
|
|
38597
|
-
},{}],
|
|
38634
|
+
},{}],181:[function(_dereq_,module,exports){
|
|
38598
38635
|
/**
|
|
38599
38636
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38600
38637
|
* All rights reserved.
|
|
@@ -38667,7 +38704,7 @@ module.exports = {
|
|
|
38667
38704
|
MINUS_SIGN: '\u2212'
|
|
38668
38705
|
};
|
|
38669
38706
|
|
|
38670
|
-
},{}],
|
|
38707
|
+
},{}],182:[function(_dereq_,module,exports){
|
|
38671
38708
|
/**
|
|
38672
38709
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38673
38710
|
* All rights reserved.
|
|
@@ -38691,7 +38728,7 @@ exports.svgAttrs = {
|
|
|
38691
38728
|
'xmlns:xlink': exports.xlink
|
|
38692
38729
|
};
|
|
38693
38730
|
|
|
38694
|
-
},{}],
|
|
38731
|
+
},{}],183:[function(_dereq_,module,exports){
|
|
38695
38732
|
/**
|
|
38696
38733
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38697
38734
|
* All rights reserved.
|
|
@@ -38777,7 +38814,7 @@ exports.Queue = _dereq_('./lib/queue');
|
|
|
38777
38814
|
// export d3 used in the bundle
|
|
38778
38815
|
exports.d3 = _dereq_('d3');
|
|
38779
38816
|
|
|
38780
|
-
},{"../build/plotcss":1,"./components/annotations":
|
|
38817
|
+
},{"../build/plotcss":1,"./components/annotations":68,"./components/annotations3d":73,"./components/colorbar":81,"./components/colorscale":87,"./components/errorbars":103,"./components/fx":115,"./components/grid":119,"./components/images":124,"./components/legend":132,"./components/rangeselector":143,"./components/rangeslider":150,"./components/shapes":164,"./components/sliders":169,"./components/updatemenus":175,"./fonts/mathjax_config":184,"./fonts/ploticon":185,"./lib/queue":217,"./locale-en":228,"./locale-en-us":227,"./plot_api":232,"./plot_api/plot_schema":236,"./plots/plots":282,"./registry":290,"./snapshot":295,"./traces/scatter":342,"./version":358,"d3":9,"es6-promise":10}],184:[function(_dereq_,module,exports){
|
|
38781
38818
|
/**
|
|
38782
38819
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38783
38820
|
* All rights reserved.
|
|
@@ -38808,7 +38845,7 @@ module.exports = function() {
|
|
|
38808
38845
|
}
|
|
38809
38846
|
};
|
|
38810
38847
|
|
|
38811
|
-
},{}],
|
|
38848
|
+
},{}],185:[function(_dereq_,module,exports){
|
|
38812
38849
|
/**
|
|
38813
38850
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38814
38851
|
* All rights reserved.
|
|
@@ -38988,7 +39025,7 @@ module.exports = {
|
|
|
38988
39025
|
}
|
|
38989
39026
|
};
|
|
38990
39027
|
|
|
38991
|
-
},{}],
|
|
39028
|
+
},{}],186:[function(_dereq_,module,exports){
|
|
38992
39029
|
/**
|
|
38993
39030
|
* Copyright 2012-2020, Plotly, Inc.
|
|
38994
39031
|
* All rights reserved.
|
|
@@ -39052,7 +39089,7 @@ exports.isBottomAnchor = function isBottomAnchor(opts) {
|
|
|
39052
39089
|
);
|
|
39053
39090
|
};
|
|
39054
39091
|
|
|
39055
|
-
},{}],
|
|
39092
|
+
},{}],187:[function(_dereq_,module,exports){
|
|
39056
39093
|
/**
|
|
39057
39094
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39058
39095
|
* All rights reserved.
|
|
@@ -39293,7 +39330,7 @@ module.exports = {
|
|
|
39293
39330
|
pathAnnulus: pathAnnulus
|
|
39294
39331
|
};
|
|
39295
39332
|
|
|
39296
|
-
},{"./mod":
|
|
39333
|
+
},{"./mod":209}],188:[function(_dereq_,module,exports){
|
|
39297
39334
|
/**
|
|
39298
39335
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39299
39336
|
* All rights reserved.
|
|
@@ -39450,7 +39487,7 @@ function _rowLength(z, fn, len0) {
|
|
|
39450
39487
|
return 0;
|
|
39451
39488
|
}
|
|
39452
39489
|
|
|
39453
|
-
},{}],
|
|
39490
|
+
},{}],189:[function(_dereq_,module,exports){
|
|
39454
39491
|
/**
|
|
39455
39492
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39456
39493
|
* All rights reserved.
|
|
@@ -39483,7 +39520,7 @@ module.exports = function cleanNumber(v) {
|
|
|
39483
39520
|
return BADNUM;
|
|
39484
39521
|
};
|
|
39485
39522
|
|
|
39486
|
-
},{"../constants/numerical":
|
|
39523
|
+
},{"../constants/numerical":181,"fast-isnumeric":11}],190:[function(_dereq_,module,exports){
|
|
39487
39524
|
/**
|
|
39488
39525
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39489
39526
|
* All rights reserved.
|
|
@@ -39511,7 +39548,7 @@ module.exports = function clearGlCanvases(gd) {
|
|
|
39511
39548
|
}
|
|
39512
39549
|
};
|
|
39513
39550
|
|
|
39514
|
-
},{}],
|
|
39551
|
+
},{}],191:[function(_dereq_,module,exports){
|
|
39515
39552
|
/**
|
|
39516
39553
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39517
39554
|
* All rights reserved.
|
|
@@ -39534,7 +39571,7 @@ module.exports = function clearResponsive(gd) {
|
|
|
39534
39571
|
}
|
|
39535
39572
|
};
|
|
39536
39573
|
|
|
39537
|
-
},{}],
|
|
39574
|
+
},{}],192:[function(_dereq_,module,exports){
|
|
39538
39575
|
/**
|
|
39539
39576
|
* Copyright 2012-2020, Plotly, Inc.
|
|
39540
39577
|
* All rights reserved.
|
|
@@ -39998,7 +40035,7 @@ function validate(value, opts) {
|
|
|
39998
40035
|
}
|
|
39999
40036
|
exports.validate = validate;
|
|
40000
40037
|
|
|
40001
|
-
},{"../components/colorscale/scales":
|
|
40038
|
+
},{"../components/colorscale/scales":90,"../constants/interactions":180,"../plots/attributes":244,"./array":188,"./mod":209,"./nested_property":210,"./regex":218,"fast-isnumeric":11,"tinycolor2":58}],193:[function(_dereq_,module,exports){
|
|
40002
40039
|
/**
|
|
40003
40040
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40004
40041
|
* All rights reserved.
|
|
@@ -40599,7 +40636,7 @@ exports.findExactDates = function(data, calendar) {
|
|
|
40599
40636
|
};
|
|
40600
40637
|
};
|
|
40601
40638
|
|
|
40602
|
-
},{"../constants/numerical":
|
|
40639
|
+
},{"../constants/numerical":181,"../registry":290,"./loggers":206,"./mod":209,"d3-time-format":7,"fast-isnumeric":11}],194:[function(_dereq_,module,exports){
|
|
40603
40640
|
/**
|
|
40604
40641
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40605
40642
|
* All rights reserved.
|
|
@@ -40777,7 +40814,7 @@ module.exports = {
|
|
|
40777
40814
|
equalDomRects: equalDomRects
|
|
40778
40815
|
};
|
|
40779
40816
|
|
|
40780
|
-
},{"./loggers":
|
|
40817
|
+
},{"./loggers":206,"./matrix":208,"d3":9,"gl-mat4":27}],195:[function(_dereq_,module,exports){
|
|
40781
40818
|
/**
|
|
40782
40819
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40783
40820
|
* All rights reserved.
|
|
@@ -40950,7 +40987,7 @@ var Events = {
|
|
|
40950
40987
|
|
|
40951
40988
|
module.exports = Events;
|
|
40952
40989
|
|
|
40953
|
-
},{"events":6}],
|
|
40990
|
+
},{"events":6}],196:[function(_dereq_,module,exports){
|
|
40954
40991
|
/**
|
|
40955
40992
|
* Copyright 2012-2020, Plotly, Inc.
|
|
40956
40993
|
* All rights reserved.
|
|
@@ -41064,7 +41101,7 @@ function _extend(inputs, isDeep, keepAllKeys, noArrayCopies) {
|
|
|
41064
41101
|
return target;
|
|
41065
41102
|
}
|
|
41066
41103
|
|
|
41067
|
-
},{"./is_plain_object.js":
|
|
41104
|
+
},{"./is_plain_object.js":203}],197:[function(_dereq_,module,exports){
|
|
41068
41105
|
/**
|
|
41069
41106
|
* Copyright 2012-2020, Plotly, Inc.
|
|
41070
41107
|
* All rights reserved.
|
|
@@ -41115,7 +41152,7 @@ module.exports = function filterUnique(array) {
|
|
|
41115
41152
|
return out;
|
|
41116
41153
|
};
|
|
41117
41154
|
|
|
41118
|
-
},{}],
|
|
41155
|
+
},{}],198:[function(_dereq_,module,exports){
|
|
41119
41156
|
/**
|
|
41120
41157
|
* Copyright 2012-2020, Plotly, Inc.
|
|
41121
41158
|
* All rights reserved.
|
|
@@ -41163,7 +41200,7 @@ function isCalcData(cont) {
|
|
|
41163
41200
|
);
|
|
41164
41201
|
}
|
|
41165
41202
|
|
|
41166
|
-
},{}],
|
|
41203
|
+
},{}],199:[function(_dereq_,module,exports){
|
|
41167
41204
|
/**
|
|
41168
41205
|
* Copyright 2012-2020, Plotly, Inc.
|
|
41169
41206
|
* All rights reserved.
|
|
@@ -41407,7 +41444,7 @@ exports.findPointOnPath = function findPointOnPath(path, val, coord, opts) {
|
|
|
41407
41444
|
return pt;
|
|
41408
41445
|
};
|
|
41409
41446
|
|
|
41410
|
-
},{"./mod":
|
|
41447
|
+
},{"./mod":209}],200:[function(_dereq_,module,exports){
|
|
41411
41448
|
/**
|
|
41412
41449
|
* Copyright 2012-2020, Plotly, Inc.
|
|
41413
41450
|
* All rights reserved.
|
|
@@ -41423,7 +41460,7 @@ exports.findPointOnPath = function findPointOnPath(path, val, coord, opts) {
|
|
|
41423
41460
|
|
|
41424
41461
|
module.exports = function identity(d) { return d; };
|
|
41425
41462
|
|
|
41426
|
-
},{}],
|
|
41463
|
+
},{}],201:[function(_dereq_,module,exports){
|
|
41427
41464
|
/**
|
|
41428
41465
|
* Copyright 2012-2020, Plotly, Inc.
|
|
41429
41466
|
* All rights reserved.
|
|
@@ -41465,7 +41502,7 @@ module.exports = function incrementNumeric(x, delta) {
|
|
|
41465
41502
|
return newX;
|
|
41466
41503
|
};
|
|
41467
41504
|
|
|
41468
|
-
},{}],
|
|
41505
|
+
},{}],202:[function(_dereq_,module,exports){
|
|
41469
41506
|
/**
|
|
41470
41507
|
* Copyright 2012-2020, Plotly, Inc.
|
|
41471
41508
|
* All rights reserved.
|
|
@@ -41622,6 +41659,7 @@ lib.getElementAndAncestors = domModule.getElementAndAncestors;
|
|
|
41622
41659
|
lib.equalDomRects = domModule.equalDomRects;
|
|
41623
41660
|
|
|
41624
41661
|
lib.clearResponsive = _dereq_('./clear_responsive');
|
|
41662
|
+
lib.preserveDrawingBuffer = _dereq_('./preserve_drawing_buffer');
|
|
41625
41663
|
|
|
41626
41664
|
lib.makeTraceGroups = _dereq_('./make_trace_groups');
|
|
41627
41665
|
|
|
@@ -42332,7 +42370,7 @@ lib.objectFromPath = function(path, value) {
|
|
|
42332
42370
|
* lib.expandObjectPaths({'foo[1].bar': 10, 'foo[0].bar': 20});
|
|
42333
42371
|
* => { foo: [{bar: 10}, {bar: 20}] }
|
|
42334
42372
|
*
|
|
42335
|
-
* It does NOT, however, merge
|
|
42373
|
+
* It does NOT, however, merge multiple multiply-nested arrays::
|
|
42336
42374
|
*
|
|
42337
42375
|
* lib.expandObjectPaths({'marker[1].range[1]': 5, 'marker[1].range[0]': 4})
|
|
42338
42376
|
* => { marker: [null, {range: 4}] }
|
|
@@ -42747,7 +42785,7 @@ lib.join2 = function(arr, mainSeparator, lastSeparator) {
|
|
|
42747
42785
|
return arr.join(mainSeparator);
|
|
42748
42786
|
};
|
|
42749
42787
|
|
|
42750
|
-
},{"../constants/numerical":
|
|
42788
|
+
},{"../constants/numerical":181,"./anchor_utils":186,"./angles":187,"./array":188,"./clean_number":189,"./clear_responsive":191,"./coerce":192,"./dates":193,"./dom":194,"./extend":196,"./filter_unique":197,"./filter_visible":198,"./geometry2d":199,"./identity":200,"./increment":201,"./is_plain_object":203,"./keyed_container":204,"./localize":205,"./loggers":206,"./make_trace_groups":207,"./matrix":208,"./mod":209,"./nested_property":210,"./noop":211,"./notifier":212,"./preserve_drawing_buffer":215,"./push_unique":216,"./regex":218,"./relative_attr":219,"./relink_private":220,"./search":221,"./stats":223,"./throttle":225,"./to_log_range":226,"d3":9,"d3-time-format":7,"fast-isnumeric":11}],203:[function(_dereq_,module,exports){
|
|
42751
42789
|
/**
|
|
42752
42790
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42753
42791
|
* All rights reserved.
|
|
@@ -42775,7 +42813,7 @@ module.exports = function isPlainObject(obj) {
|
|
|
42775
42813
|
);
|
|
42776
42814
|
};
|
|
42777
42815
|
|
|
42778
|
-
},{}],
|
|
42816
|
+
},{}],204:[function(_dereq_,module,exports){
|
|
42779
42817
|
/**
|
|
42780
42818
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42781
42819
|
* All rights reserved.
|
|
@@ -42968,7 +43006,7 @@ module.exports = function keyedContainer(baseObj, path, keyName, valueName) {
|
|
|
42968
43006
|
return obj;
|
|
42969
43007
|
};
|
|
42970
43008
|
|
|
42971
|
-
},{"./nested_property":
|
|
43009
|
+
},{"./nested_property":210}],205:[function(_dereq_,module,exports){
|
|
42972
43010
|
/**
|
|
42973
43011
|
* Copyright 2012-2020, Plotly, Inc.
|
|
42974
43012
|
* All rights reserved.
|
|
@@ -43024,7 +43062,7 @@ module.exports = function localize(gd, s) {
|
|
|
43024
43062
|
return s;
|
|
43025
43063
|
};
|
|
43026
43064
|
|
|
43027
|
-
},{"../registry":
|
|
43065
|
+
},{"../registry":290}],206:[function(_dereq_,module,exports){
|
|
43028
43066
|
/**
|
|
43029
43067
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43030
43068
|
* All rights reserved.
|
|
@@ -43134,7 +43172,7 @@ function apply(f, args) {
|
|
|
43134
43172
|
}
|
|
43135
43173
|
}
|
|
43136
43174
|
|
|
43137
|
-
},{"../plot_api/plot_config":
|
|
43175
|
+
},{"../plot_api/plot_config":235,"./notifier":212}],207:[function(_dereq_,module,exports){
|
|
43138
43176
|
/**
|
|
43139
43177
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43140
43178
|
* All rights reserved.
|
|
@@ -43177,7 +43215,7 @@ module.exports = function makeTraceGroups(traceLayer, cdModule, cls) {
|
|
|
43177
43215
|
return traces;
|
|
43178
43216
|
};
|
|
43179
43217
|
|
|
43180
|
-
},{"d3":9}],
|
|
43218
|
+
},{"d3":9}],208:[function(_dereq_,module,exports){
|
|
43181
43219
|
/**
|
|
43182
43220
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43183
43221
|
* All rights reserved.
|
|
@@ -43329,7 +43367,7 @@ exports.inverseTransformMatrix = function(m) {
|
|
|
43329
43367
|
];
|
|
43330
43368
|
};
|
|
43331
43369
|
|
|
43332
|
-
},{"gl-mat4":27}],
|
|
43370
|
+
},{"gl-mat4":27}],209:[function(_dereq_,module,exports){
|
|
43333
43371
|
/**
|
|
43334
43372
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43335
43373
|
* All rights reserved.
|
|
@@ -43364,7 +43402,7 @@ module.exports = {
|
|
|
43364
43402
|
modHalf: modHalf
|
|
43365
43403
|
};
|
|
43366
43404
|
|
|
43367
|
-
},{}],
|
|
43405
|
+
},{}],210:[function(_dereq_,module,exports){
|
|
43368
43406
|
/**
|
|
43369
43407
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43370
43408
|
* All rights reserved.
|
|
@@ -43610,7 +43648,7 @@ function badContainer(container, propStr, propParts) {
|
|
|
43610
43648
|
};
|
|
43611
43649
|
}
|
|
43612
43650
|
|
|
43613
|
-
},{"./array":
|
|
43651
|
+
},{"./array":188,"fast-isnumeric":11}],211:[function(_dereq_,module,exports){
|
|
43614
43652
|
/**
|
|
43615
43653
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43616
43654
|
* All rights reserved.
|
|
@@ -43626,7 +43664,7 @@ function badContainer(container, propStr, propParts) {
|
|
|
43626
43664
|
|
|
43627
43665
|
module.exports = function noop() {};
|
|
43628
43666
|
|
|
43629
|
-
},{}],
|
|
43667
|
+
},{}],212:[function(_dereq_,module,exports){
|
|
43630
43668
|
/**
|
|
43631
43669
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43632
43670
|
* All rights reserved.
|
|
@@ -43714,7 +43752,7 @@ module.exports = function(text, displayLength) {
|
|
|
43714
43752
|
});
|
|
43715
43753
|
};
|
|
43716
43754
|
|
|
43717
|
-
},{"d3":9,"fast-isnumeric":11}],
|
|
43755
|
+
},{"d3":9,"fast-isnumeric":11}],213:[function(_dereq_,module,exports){
|
|
43718
43756
|
/**
|
|
43719
43757
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43720
43758
|
* All rights reserved.
|
|
@@ -43762,7 +43800,7 @@ module.exports = function overrideCursor(el3, csr) {
|
|
|
43762
43800
|
}
|
|
43763
43801
|
};
|
|
43764
43802
|
|
|
43765
|
-
},{"./setcursor":
|
|
43803
|
+
},{"./setcursor":222}],214:[function(_dereq_,module,exports){
|
|
43766
43804
|
/**
|
|
43767
43805
|
* Copyright 2012-2020, Plotly, Inc.
|
|
43768
43806
|
* All rights reserved.
|
|
@@ -44014,7 +44052,77 @@ polygon.filter = function filter(pts, tolerance) {
|
|
|
44014
44052
|
};
|
|
44015
44053
|
};
|
|
44016
44054
|
|
|
44017
|
-
},{"../constants/numerical":
|
|
44055
|
+
},{"../constants/numerical":181,"./matrix":208}],215:[function(_dereq_,module,exports){
|
|
44056
|
+
/**
|
|
44057
|
+
* Copyright 2012-2020, Plotly, Inc.
|
|
44058
|
+
* All rights reserved.
|
|
44059
|
+
*
|
|
44060
|
+
* This source code is licensed under the MIT license found in the
|
|
44061
|
+
* LICENSE file in the root directory of this source tree.
|
|
44062
|
+
*/
|
|
44063
|
+
|
|
44064
|
+
'use strict';
|
|
44065
|
+
|
|
44066
|
+
var isNumeric = _dereq_('fast-isnumeric');
|
|
44067
|
+
var isMobileOrTablet = _dereq_('is-mobile');
|
|
44068
|
+
|
|
44069
|
+
module.exports = function preserveDrawingBuffer(opts) {
|
|
44070
|
+
var ua;
|
|
44071
|
+
|
|
44072
|
+
if(opts && opts.hasOwnProperty('userAgent')) {
|
|
44073
|
+
ua = opts.userAgent;
|
|
44074
|
+
} else {
|
|
44075
|
+
ua = getUserAgent();
|
|
44076
|
+
}
|
|
44077
|
+
|
|
44078
|
+
if(typeof ua !== 'string') return true;
|
|
44079
|
+
|
|
44080
|
+
var enable = isMobileOrTablet({
|
|
44081
|
+
ua: { headers: {'user-agent': ua }},
|
|
44082
|
+
tablet: true,
|
|
44083
|
+
featureDetect: false
|
|
44084
|
+
});
|
|
44085
|
+
|
|
44086
|
+
if(!enable) {
|
|
44087
|
+
var allParts = ua.split(' ');
|
|
44088
|
+
for(var i = 1; i < allParts.length; i++) {
|
|
44089
|
+
var part = allParts[i];
|
|
44090
|
+
if(part.indexOf('Safari') !== -1) {
|
|
44091
|
+
// find Safari version
|
|
44092
|
+
for(var k = i - 1; k > -1; k--) {
|
|
44093
|
+
var prevPart = allParts[k];
|
|
44094
|
+
if(prevPart.substr(0, 8) === 'Version/') {
|
|
44095
|
+
var v = prevPart.substr(8).split('.')[0];
|
|
44096
|
+
if(isNumeric(v)) v = +v;
|
|
44097
|
+
if(v >= 13) return true;
|
|
44098
|
+
}
|
|
44099
|
+
}
|
|
44100
|
+
}
|
|
44101
|
+
}
|
|
44102
|
+
}
|
|
44103
|
+
|
|
44104
|
+
return enable;
|
|
44105
|
+
};
|
|
44106
|
+
|
|
44107
|
+
function getUserAgent() {
|
|
44108
|
+
// similar to https://github.com/juliangruber/is-mobile/blob/91ca39ccdd4cfc5edfb5391e2515b923a730fbea/index.js#L14-L17
|
|
44109
|
+
var ua;
|
|
44110
|
+
if(typeof navigator !== 'undefined') {
|
|
44111
|
+
ua = navigator.userAgent;
|
|
44112
|
+
}
|
|
44113
|
+
|
|
44114
|
+
if(
|
|
44115
|
+
ua &&
|
|
44116
|
+
ua.headers &&
|
|
44117
|
+
typeof ua.headers['user-agent'] === 'string'
|
|
44118
|
+
) {
|
|
44119
|
+
ua = ua.headers['user-agent'];
|
|
44120
|
+
}
|
|
44121
|
+
|
|
44122
|
+
return ua;
|
|
44123
|
+
}
|
|
44124
|
+
|
|
44125
|
+
},{"fast-isnumeric":11,"is-mobile":45}],216:[function(_dereq_,module,exports){
|
|
44018
44126
|
/**
|
|
44019
44127
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44020
44128
|
* All rights reserved.
|
|
@@ -44052,7 +44160,7 @@ module.exports = function pushUnique(array, item) {
|
|
|
44052
44160
|
return array;
|
|
44053
44161
|
};
|
|
44054
44162
|
|
|
44055
|
-
},{}],
|
|
44163
|
+
},{}],217:[function(_dereq_,module,exports){
|
|
44056
44164
|
/**
|
|
44057
44165
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44058
44166
|
* All rights reserved.
|
|
@@ -44260,7 +44368,7 @@ queue.plotDo = function(gd, func, args) {
|
|
|
44260
44368
|
|
|
44261
44369
|
module.exports = queue;
|
|
44262
44370
|
|
|
44263
|
-
},{"../lib":
|
|
44371
|
+
},{"../lib":202,"../plot_api/plot_config":235}],218:[function(_dereq_,module,exports){
|
|
44264
44372
|
/**
|
|
44265
44373
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44266
44374
|
* All rights reserved.
|
|
@@ -44290,7 +44398,7 @@ exports.counter = function(head, tail, openEnded, matchBeginning) {
|
|
|
44290
44398
|
return new RegExp(startWithPrefix + head + '([2-9]|[1-9][0-9]+)?' + fullTail);
|
|
44291
44399
|
};
|
|
44292
44400
|
|
|
44293
|
-
},{}],
|
|
44401
|
+
},{}],219:[function(_dereq_,module,exports){
|
|
44294
44402
|
/**
|
|
44295
44403
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44296
44404
|
* All rights reserved.
|
|
@@ -44343,7 +44451,7 @@ module.exports = function(baseAttr, relativeAttr) {
|
|
|
44343
44451
|
return baseAttr + relativeAttr;
|
|
44344
44452
|
};
|
|
44345
44453
|
|
|
44346
|
-
},{}],
|
|
44454
|
+
},{}],220:[function(_dereq_,module,exports){
|
|
44347
44455
|
/**
|
|
44348
44456
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44349
44457
|
* All rights reserved.
|
|
@@ -44400,7 +44508,7 @@ module.exports = function relinkPrivateKeys(toContainer, fromContainer) {
|
|
|
44400
44508
|
}
|
|
44401
44509
|
};
|
|
44402
44510
|
|
|
44403
|
-
},{"./array":
|
|
44511
|
+
},{"./array":188,"./is_plain_object":203}],221:[function(_dereq_,module,exports){
|
|
44404
44512
|
/**
|
|
44405
44513
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44406
44514
|
* All rights reserved.
|
|
@@ -44605,7 +44713,7 @@ exports.findIndexOfMin = function(arr, fn) {
|
|
|
44605
44713
|
return ind;
|
|
44606
44714
|
};
|
|
44607
44715
|
|
|
44608
|
-
},{"../constants/numerical":
|
|
44716
|
+
},{"../constants/numerical":181,"./identity":200,"./loggers":206,"fast-isnumeric":11}],222:[function(_dereq_,module,exports){
|
|
44609
44717
|
/**
|
|
44610
44718
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44611
44719
|
* All rights reserved.
|
|
@@ -44628,7 +44736,7 @@ module.exports = function setCursor(el3, csr) {
|
|
|
44628
44736
|
if(csr) el3.classed('cursor-' + csr, true);
|
|
44629
44737
|
};
|
|
44630
44738
|
|
|
44631
|
-
},{}],
|
|
44739
|
+
},{}],223:[function(_dereq_,module,exports){
|
|
44632
44740
|
/**
|
|
44633
44741
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44634
44742
|
* All rights reserved.
|
|
@@ -44738,7 +44846,7 @@ exports.interp = function(arr, n) {
|
|
|
44738
44846
|
return frac * arr[Math.ceil(n)] + (1 - frac) * arr[Math.floor(n)];
|
|
44739
44847
|
};
|
|
44740
44848
|
|
|
44741
|
-
},{"./array":
|
|
44849
|
+
},{"./array":188,"fast-isnumeric":11}],224:[function(_dereq_,module,exports){
|
|
44742
44850
|
/**
|
|
44743
44851
|
* Copyright 2012-2020, Plotly, Inc.
|
|
44744
44852
|
* All rights reserved.
|
|
@@ -45629,7 +45737,7 @@ exports.makeEditable = function(context, options) {
|
|
|
45629
45737
|
return d3.rebind(context, dispatch, 'on');
|
|
45630
45738
|
};
|
|
45631
45739
|
|
|
45632
|
-
},{"../constants/alignment":
|
|
45740
|
+
},{"../constants/alignment":177,"../constants/xmlns_namespaces":182,"../lib":202,"d3":9}],225:[function(_dereq_,module,exports){
|
|
45633
45741
|
/**
|
|
45634
45742
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45635
45743
|
* All rights reserved.
|
|
@@ -45732,7 +45840,7 @@ function _clearTimeout(cache) {
|
|
|
45732
45840
|
}
|
|
45733
45841
|
}
|
|
45734
45842
|
|
|
45735
|
-
},{}],
|
|
45843
|
+
},{}],226:[function(_dereq_,module,exports){
|
|
45736
45844
|
/**
|
|
45737
45845
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45738
45846
|
* All rights reserved.
|
|
@@ -45760,7 +45868,7 @@ module.exports = function toLogRange(val, range) {
|
|
|
45760
45868
|
return newVal;
|
|
45761
45869
|
};
|
|
45762
45870
|
|
|
45763
|
-
},{"fast-isnumeric":11}],
|
|
45871
|
+
},{"fast-isnumeric":11}],227:[function(_dereq_,module,exports){
|
|
45764
45872
|
/**
|
|
45765
45873
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45766
45874
|
* All rights reserved.
|
|
@@ -45782,7 +45890,7 @@ module.exports = {
|
|
|
45782
45890
|
}
|
|
45783
45891
|
};
|
|
45784
45892
|
|
|
45785
|
-
},{}],
|
|
45893
|
+
},{}],228:[function(_dereq_,module,exports){
|
|
45786
45894
|
/**
|
|
45787
45895
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45788
45896
|
* All rights reserved.
|
|
@@ -45825,7 +45933,7 @@ module.exports = {
|
|
|
45825
45933
|
}
|
|
45826
45934
|
};
|
|
45827
45935
|
|
|
45828
|
-
},{}],
|
|
45936
|
+
},{}],229:[function(_dereq_,module,exports){
|
|
45829
45937
|
/**
|
|
45830
45938
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45831
45939
|
* All rights reserved.
|
|
@@ -45883,7 +45991,7 @@ module.exports = function containerArrayMatch(astr) {
|
|
|
45883
45991
|
return {array: arrayStr, index: Number(match[1]), property: match[3] || ''};
|
|
45884
45992
|
};
|
|
45885
45993
|
|
|
45886
|
-
},{"../registry":
|
|
45994
|
+
},{"../registry":290}],230:[function(_dereq_,module,exports){
|
|
45887
45995
|
/**
|
|
45888
45996
|
* Copyright 2012-2020, Plotly, Inc.
|
|
45889
45997
|
* All rights reserved.
|
|
@@ -46008,7 +46116,7 @@ function overrideOne(attr, editTypeOverride, overrideContainers, key) {
|
|
|
46008
46116
|
}
|
|
46009
46117
|
}
|
|
46010
46118
|
|
|
46011
|
-
},{"../lib":
|
|
46119
|
+
},{"../lib":202}],231:[function(_dereq_,module,exports){
|
|
46012
46120
|
/**
|
|
46013
46121
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46014
46122
|
* All rights reserved.
|
|
@@ -46710,7 +46818,7 @@ exports.clearAxisTypes = function(gd, traces, layoutUpdate) {
|
|
|
46710
46818
|
}
|
|
46711
46819
|
};
|
|
46712
46820
|
|
|
46713
|
-
},{"../components/color":
|
|
46821
|
+
},{"../components/color":75,"../lib":202,"../plots/cartesian/axis_ids":251,"../plots/plots":282,"../registry":290,"fast-isnumeric":11,"gl-mat4/fromQuat":17}],232:[function(_dereq_,module,exports){
|
|
46714
46822
|
/**
|
|
46715
46823
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46716
46824
|
* All rights reserved.
|
|
@@ -46753,7 +46861,7 @@ var templateApi = _dereq_('./template_api');
|
|
|
46753
46861
|
exports.makeTemplate = templateApi.makeTemplate;
|
|
46754
46862
|
exports.validateTemplate = templateApi.validateTemplate;
|
|
46755
46863
|
|
|
46756
|
-
},{"../snapshot/download":
|
|
46864
|
+
},{"../snapshot/download":292,"./plot_api":234,"./template_api":239,"./to_image":240,"./validate":241}],233:[function(_dereq_,module,exports){
|
|
46757
46865
|
/**
|
|
46758
46866
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46759
46867
|
* All rights reserved.
|
|
@@ -46966,7 +47074,7 @@ exports.applyContainerArrayChanges = function applyContainerArrayChanges(gd, np,
|
|
|
46966
47074
|
return true;
|
|
46967
47075
|
};
|
|
46968
47076
|
|
|
46969
|
-
},{"../lib/is_plain_object":
|
|
47077
|
+
},{"../lib/is_plain_object":203,"../lib/loggers":206,"../lib/noop":211,"../lib/search":221,"../registry":290,"./container_array_match":229}],234:[function(_dereq_,module,exports){
|
|
46970
47078
|
/**
|
|
46971
47079
|
* Copyright 2012-2020, Plotly, Inc.
|
|
46972
47080
|
* All rights reserved.
|
|
@@ -50200,7 +50308,7 @@ function animate(gd, frameOrGroupNameOrFrameList, animationOpts) {
|
|
|
50200
50308
|
}
|
|
50201
50309
|
|
|
50202
50310
|
// Execute a callback after the wrapper function has been called n times.
|
|
50203
|
-
// This is used to defer the resolution until a transition has
|
|
50311
|
+
// This is used to defer the resolution until a transition has resolved *and*
|
|
50204
50312
|
// the frame has completed. If it's not done this way, then we get a race
|
|
50205
50313
|
// condition in which the animation might resolve before a transition is complete
|
|
50206
50314
|
// or vice versa.
|
|
@@ -50896,7 +51004,7 @@ exports._guiUpdate = guiEdit(update);
|
|
|
50896
51004
|
|
|
50897
51005
|
exports._storeDirectGUIEdit = _storeDirectGUIEdit;
|
|
50898
51006
|
|
|
50899
|
-
},{"../components/color":
|
|
51007
|
+
},{"../components/color":75,"../components/drawing":97,"../constants/xmlns_namespaces":182,"../lib":202,"../lib/events":195,"../lib/queue":217,"../lib/svg_text_utils":224,"../plots/cartesian/axes":248,"../plots/cartesian/constants":254,"../plots/cartesian/graph_interact":257,"../plots/cartesian/select":267,"../plots/plots":282,"../plots/polar/legacy":285,"../registry":290,"./edit_types":230,"./helpers":231,"./manage_arrays":233,"./plot_config":235,"./plot_schema":236,"./subroutines":238,"d3":9,"fast-isnumeric":11,"has-hover":42}],235:[function(_dereq_,module,exports){
|
|
50900
51008
|
/**
|
|
50901
51009
|
* Copyright 2012-2020, Plotly, Inc.
|
|
50902
51010
|
* All rights reserved.
|
|
@@ -51211,7 +51319,7 @@ module.exports = {
|
|
|
51211
51319
|
dfltConfig: dfltConfig
|
|
51212
51320
|
};
|
|
51213
51321
|
|
|
51214
|
-
},{}],
|
|
51322
|
+
},{}],236:[function(_dereq_,module,exports){
|
|
51215
51323
|
/**
|
|
51216
51324
|
* Copyright 2012-2020, Plotly, Inc.
|
|
51217
51325
|
* All rights reserved.
|
|
@@ -51922,7 +52030,7 @@ function insertAttrs(baseAttrs, newAttrs, astr) {
|
|
|
51922
52030
|
np.set(extendDeepAll(np.get() || {}, newAttrs));
|
|
51923
52031
|
}
|
|
51924
52032
|
|
|
51925
|
-
},{"../lib":
|
|
52033
|
+
},{"../lib":202,"../plots/animation_attributes":242,"../plots/attributes":244,"../plots/frame_attributes":277,"../plots/layout_attributes":280,"../plots/polar/legacy/area_attributes":283,"../plots/polar/legacy/axis_attributes":284,"../registry":290,"./edit_types":230,"./plot_config":235}],237:[function(_dereq_,module,exports){
|
|
51926
52034
|
/**
|
|
51927
52035
|
* Copyright 2012-2020, Plotly, Inc.
|
|
51928
52036
|
* All rights reserved.
|
|
@@ -52234,7 +52342,7 @@ exports.arrayEditor = function(parentIn, containerStr, itemOut) {
|
|
|
52234
52342
|
};
|
|
52235
52343
|
};
|
|
52236
52344
|
|
|
52237
|
-
},{"../lib":
|
|
52345
|
+
},{"../lib":202,"../plots/attributes":244}],238:[function(_dereq_,module,exports){
|
|
52238
52346
|
/**
|
|
52239
52347
|
* Copyright 2012-2020, Plotly, Inc.
|
|
52240
52348
|
* All rights reserved.
|
|
@@ -52958,7 +53066,7 @@ exports.drawMarginPushers = function(gd) {
|
|
|
52958
53066
|
Registry.getComponentMethod('colorbar', 'draw')(gd);
|
|
52959
53067
|
};
|
|
52960
53068
|
|
|
52961
|
-
},{"../components/color":
|
|
53069
|
+
},{"../components/color":75,"../components/drawing":97,"../components/modebar":135,"../components/titles":170,"../constants/alignment":177,"../lib":202,"../lib/clear_gl_canvases":190,"../plots/cartesian/autorange":247,"../plots/cartesian/axes":248,"../plots/cartesian/constraints":255,"../plots/plots":282,"../registry":290,"d3":9}],239:[function(_dereq_,module,exports){
|
|
52962
53070
|
/**
|
|
52963
53071
|
* Copyright 2012-2020, Plotly, Inc.
|
|
52964
53072
|
* All rights reserved.
|
|
@@ -53420,7 +53528,7 @@ function format(opts) {
|
|
|
53420
53528
|
return opts;
|
|
53421
53529
|
}
|
|
53422
53530
|
|
|
53423
|
-
},{"../lib":
|
|
53531
|
+
},{"../lib":202,"../plots/attributes":244,"../plots/plots":282,"./plot_config":235,"./plot_schema":236,"./plot_template":237}],240:[function(_dereq_,module,exports){
|
|
53424
53532
|
/**
|
|
53425
53533
|
* Copyright 2012-2020, Plotly, Inc.
|
|
53426
53534
|
* All rights reserved.
|
|
@@ -53641,7 +53749,7 @@ function toImage(gd, opts) {
|
|
|
53641
53749
|
|
|
53642
53750
|
module.exports = toImage;
|
|
53643
53751
|
|
|
53644
|
-
},{"../lib":
|
|
53752
|
+
},{"../lib":202,"../plots/plots":282,"../snapshot/helpers":294,"../snapshot/svgtoimg":296,"../snapshot/tosvg":298,"../version":358,"./plot_api":234,"fast-isnumeric":11}],241:[function(_dereq_,module,exports){
|
|
53645
53753
|
/**
|
|
53646
53754
|
* Copyright 2012-2020, Plotly, Inc.
|
|
53647
53755
|
* All rights reserved.
|
|
@@ -54072,7 +54180,7 @@ function convertPathToAttributeString(path) {
|
|
|
54072
54180
|
return astr;
|
|
54073
54181
|
}
|
|
54074
54182
|
|
|
54075
|
-
},{"../lib":
|
|
54183
|
+
},{"../lib":202,"../plots/plots":282,"./plot_config":235,"./plot_schema":236}],242:[function(_dereq_,module,exports){
|
|
54076
54184
|
/**
|
|
54077
54185
|
* Copyright 2012-2020, Plotly, Inc.
|
|
54078
54186
|
* All rights reserved.
|
|
@@ -54184,7 +54292,7 @@ module.exports = {
|
|
|
54184
54292
|
}
|
|
54185
54293
|
};
|
|
54186
54294
|
|
|
54187
|
-
},{}],
|
|
54295
|
+
},{}],243:[function(_dereq_,module,exports){
|
|
54188
54296
|
/**
|
|
54189
54297
|
* Copyright 2012-2020, Plotly, Inc.
|
|
54190
54298
|
* All rights reserved.
|
|
@@ -54279,7 +54387,7 @@ module.exports = function handleArrayContainerDefaults(parentObjIn, parentObjOut
|
|
|
54279
54387
|
return contOut;
|
|
54280
54388
|
};
|
|
54281
54389
|
|
|
54282
|
-
},{"../lib":
|
|
54390
|
+
},{"../lib":202,"../plot_api/plot_template":237}],244:[function(_dereq_,module,exports){
|
|
54283
54391
|
/**
|
|
54284
54392
|
* Copyright 2012-2020, Plotly, Inc.
|
|
54285
54393
|
* All rights reserved.
|
|
@@ -54420,7 +54528,7 @@ module.exports = {
|
|
|
54420
54528
|
}
|
|
54421
54529
|
};
|
|
54422
54530
|
|
|
54423
|
-
},{"../components/fx/attributes":
|
|
54531
|
+
},{"../components/fx/attributes":106}],245:[function(_dereq_,module,exports){
|
|
54424
54532
|
/**
|
|
54425
54533
|
* Copyright 2012-2020, Plotly, Inc.
|
|
54426
54534
|
* All rights reserved.
|
|
@@ -54512,7 +54620,7 @@ module.exports = function alignPeriod(trace, ax, axLetter, vals) {
|
|
|
54512
54620
|
return newVals;
|
|
54513
54621
|
};
|
|
54514
54622
|
|
|
54515
|
-
},{"../../constants/numerical":
|
|
54623
|
+
},{"../../constants/numerical":181,"../../lib":202,"fast-isnumeric":11}],246:[function(_dereq_,module,exports){
|
|
54516
54624
|
/**
|
|
54517
54625
|
* Copyright 2012-2020, Plotly, Inc.
|
|
54518
54626
|
* All rights reserved.
|
|
@@ -54541,7 +54649,7 @@ module.exports = {
|
|
|
54541
54649
|
}
|
|
54542
54650
|
};
|
|
54543
54651
|
|
|
54544
|
-
},{}],
|
|
54652
|
+
},{}],247:[function(_dereq_,module,exports){
|
|
54545
54653
|
/**
|
|
54546
54654
|
* Copyright 2012-2020, Plotly, Inc.
|
|
54547
54655
|
* All rights reserved.
|
|
@@ -55150,7 +55258,7 @@ function goodNumber(v) {
|
|
|
55150
55258
|
function lessOrEqual(v0, v1) { return v0 <= v1; }
|
|
55151
55259
|
function greaterOrEqual(v0, v1) { return v0 >= v1; }
|
|
55152
55260
|
|
|
55153
|
-
},{"../../constants/numerical":
|
|
55261
|
+
},{"../../constants/numerical":181,"../../lib":202,"../../registry":290,"./axis_ids":251,"fast-isnumeric":11}],248:[function(_dereq_,module,exports){
|
|
55154
55262
|
/**
|
|
55155
55263
|
* Copyright 2012-2020, Plotly, Inc.
|
|
55156
55264
|
* All rights reserved.
|
|
@@ -58870,7 +58978,7 @@ function moveOutsideBreak(v, ax) {
|
|
|
58870
58978
|
return v;
|
|
58871
58979
|
}
|
|
58872
58980
|
|
|
58873
|
-
},{"../../components/color":
|
|
58981
|
+
},{"../../components/color":75,"../../components/drawing":97,"../../components/titles":170,"../../constants/alignment":177,"../../constants/numerical":181,"../../lib":202,"../../lib/svg_text_utils":224,"../../plots/plots":282,"../../registry":290,"./autorange":247,"./axis_autotype":249,"./axis_ids":251,"./clean_ticks":253,"./layout_attributes":262,"./set_convert":268,"d3":9,"fast-isnumeric":11}],249:[function(_dereq_,module,exports){
|
|
58874
58982
|
/**
|
|
58875
58983
|
* Copyright 2012-2020, Plotly, Inc.
|
|
58876
58984
|
* All rights reserved.
|
|
@@ -59001,7 +59109,7 @@ function multiCategory(a) {
|
|
|
59001
59109
|
return isArrayOrTypedArray(a[0]) && isArrayOrTypedArray(a[1]);
|
|
59002
59110
|
}
|
|
59003
59111
|
|
|
59004
|
-
},{"../../constants/numerical":
|
|
59112
|
+
},{"../../constants/numerical":181,"../../lib":202,"fast-isnumeric":11}],250:[function(_dereq_,module,exports){
|
|
59005
59113
|
/**
|
|
59006
59114
|
* Copyright 2012-2020, Plotly, Inc.
|
|
59007
59115
|
* All rights reserved.
|
|
@@ -59309,7 +59417,7 @@ function indexOfDay(v) {
|
|
|
59309
59417
|
];
|
|
59310
59418
|
}
|
|
59311
59419
|
|
|
59312
|
-
},{"../../lib":
|
|
59420
|
+
},{"../../lib":202,"../../registry":290,"../array_container_defaults":243,"./category_order_defaults":252,"./constants":254,"./layout_attributes":262,"./line_grid_defaults":264,"./set_convert":268,"./tick_label_defaults":269,"./tick_mark_defaults":270,"./tick_value_defaults":271,"fast-isnumeric":11}],251:[function(_dereq_,module,exports){
|
|
59313
59421
|
/**
|
|
59314
59422
|
* Copyright 2012-2020, Plotly, Inc.
|
|
59315
59423
|
* All rights reserved.
|
|
@@ -59465,7 +59573,7 @@ exports.isLinked = function(fullLayout, axId) {
|
|
|
59465
59573
|
);
|
|
59466
59574
|
};
|
|
59467
59575
|
|
|
59468
|
-
},{"../../registry":
|
|
59576
|
+
},{"../../registry":290,"./constants":254}],252:[function(_dereq_,module,exports){
|
|
59469
59577
|
/**
|
|
59470
59578
|
* Copyright 2012-2020, Plotly, Inc.
|
|
59471
59579
|
* All rights reserved.
|
|
@@ -59559,7 +59667,7 @@ module.exports = function handleCategoryOrderDefaults(containerIn, containerOut,
|
|
|
59559
59667
|
}
|
|
59560
59668
|
};
|
|
59561
59669
|
|
|
59562
|
-
},{}],
|
|
59670
|
+
},{}],253:[function(_dereq_,module,exports){
|
|
59563
59671
|
/**
|
|
59564
59672
|
* Copyright 2012-2020, Plotly, Inc.
|
|
59565
59673
|
* All rights reserved.
|
|
@@ -59651,7 +59759,7 @@ exports.tick0 = function(tick0, axType, calendar, dtick) {
|
|
|
59651
59759
|
return isNumeric(tick0) ? Number(tick0) : 0;
|
|
59652
59760
|
};
|
|
59653
59761
|
|
|
59654
|
-
},{"../../constants/numerical":
|
|
59762
|
+
},{"../../constants/numerical":181,"../../lib":202,"fast-isnumeric":11}],254:[function(_dereq_,module,exports){
|
|
59655
59763
|
/**
|
|
59656
59764
|
* Copyright 2012-2020, Plotly, Inc.
|
|
59657
59765
|
* All rights reserved.
|
|
@@ -59743,7 +59851,7 @@ module.exports = {
|
|
|
59743
59851
|
}
|
|
59744
59852
|
};
|
|
59745
59853
|
|
|
59746
|
-
},{"../../lib/regex":
|
|
59854
|
+
},{"../../lib/regex":218}],255:[function(_dereq_,module,exports){
|
|
59747
59855
|
/**
|
|
59748
59856
|
* Copyright 2012-2020, Plotly, Inc.
|
|
59749
59857
|
* All rights reserved.
|
|
@@ -60394,7 +60502,7 @@ function updateDomain(ax, factor) {
|
|
|
60394
60502
|
ax.setScale();
|
|
60395
60503
|
}
|
|
60396
60504
|
|
|
60397
|
-
},{"../../constants/alignment":
|
|
60505
|
+
},{"../../constants/alignment":177,"../../constants/numerical":181,"../../lib":202,"./autorange":247,"./axis_ids":251,"./layout_attributes":262,"./scale_zoom":266,"./set_convert":268}],256:[function(_dereq_,module,exports){
|
|
60398
60506
|
/**
|
|
60399
60507
|
* Copyright 2012-2020, Plotly, Inc.
|
|
60400
60508
|
* All rights reserved.
|
|
@@ -61732,7 +61840,7 @@ module.exports = {
|
|
|
61732
61840
|
attachWheelEventHandler: attachWheelEventHandler
|
|
61733
61841
|
};
|
|
61734
61842
|
|
|
61735
|
-
},{"../../components/color":
|
|
61843
|
+
},{"../../components/color":75,"../../components/dragelement":94,"../../components/dragelement/helpers":93,"../../components/drawing":97,"../../components/fx":115,"../../constants/alignment":177,"../../lib":202,"../../lib/clear_gl_canvases":190,"../../lib/setcursor":222,"../../lib/svg_text_utils":224,"../../plot_api/subroutines":238,"../../registry":290,"../plots":282,"./axes":248,"./axis_ids":251,"./constants":254,"./scale_zoom":266,"./select":267,"d3":9,"has-passive-events":43,"tinycolor2":58}],257:[function(_dereq_,module,exports){
|
|
61736
61844
|
/**
|
|
61737
61845
|
* Copyright 2012-2020, Plotly, Inc.
|
|
61738
61846
|
* All rights reserved.
|
|
@@ -61900,7 +62008,7 @@ exports.updateFx = function(gd) {
|
|
|
61900
62008
|
setCursor(fullLayout._draggers, cursor);
|
|
61901
62009
|
};
|
|
61902
62010
|
|
|
61903
|
-
},{"../../components/dragelement":
|
|
62011
|
+
},{"../../components/dragelement":94,"../../components/fx":115,"../../lib/setcursor":222,"./constants":254,"./dragbox":256,"d3":9}],258:[function(_dereq_,module,exports){
|
|
61904
62012
|
/**
|
|
61905
62013
|
* Copyright 2012-2020, Plotly, Inc.
|
|
61906
62014
|
* All rights reserved.
|
|
@@ -61936,7 +62044,7 @@ module.exports = {
|
|
|
61936
62044
|
clearSelect: clearSelect
|
|
61937
62045
|
};
|
|
61938
62046
|
|
|
61939
|
-
},{}],
|
|
62047
|
+
},{}],259:[function(_dereq_,module,exports){
|
|
61940
62048
|
/**
|
|
61941
62049
|
* Copyright 2012-2020, Plotly, Inc.
|
|
61942
62050
|
* All rights reserved.
|
|
@@ -61993,7 +62101,7 @@ module.exports = {
|
|
|
61993
62101
|
getTransform: getTransform
|
|
61994
62102
|
};
|
|
61995
62103
|
|
|
61996
|
-
},{"../../lib":
|
|
62104
|
+
},{"../../lib":202}],260:[function(_dereq_,module,exports){
|
|
61997
62105
|
/**
|
|
61998
62106
|
* Copyright 2012-2020, Plotly, Inc.
|
|
61999
62107
|
* All rights reserved.
|
|
@@ -62071,7 +62179,7 @@ module.exports = function makeIncludeComponents(containerArrayName) {
|
|
|
62071
62179
|
};
|
|
62072
62180
|
};
|
|
62073
62181
|
|
|
62074
|
-
},{"../../lib":
|
|
62182
|
+
},{"../../lib":202,"../../registry":290,"./axis_ids":251}],261:[function(_dereq_,module,exports){
|
|
62075
62183
|
/**
|
|
62076
62184
|
* Copyright 2012-2020, Plotly, Inc.
|
|
62077
62185
|
* All rights reserved.
|
|
@@ -62689,7 +62797,7 @@ exports.toSVG = function(gd) {
|
|
|
62689
62797
|
|
|
62690
62798
|
exports.updateFx = _dereq_('./graph_interact').updateFx;
|
|
62691
62799
|
|
|
62692
|
-
},{"../../components/drawing":
|
|
62800
|
+
},{"../../components/drawing":97,"../../constants/xmlns_namespaces":182,"../../lib":202,"../../registry":290,"../get_data":278,"../plots":282,"./attributes":246,"./axis_ids":251,"./constants":254,"./graph_interact":257,"./layout_attributes":262,"./layout_defaults":263,"./transition_axes":272,"d3":9}],262:[function(_dereq_,module,exports){
|
|
62693
62801
|
/**
|
|
62694
62802
|
* Copyright 2012-2020, Plotly, Inc.
|
|
62695
62803
|
* All rights reserved.
|
|
@@ -63409,7 +63517,7 @@ module.exports = {
|
|
|
63409
63517
|
}
|
|
63410
63518
|
};
|
|
63411
63519
|
|
|
63412
|
-
},{"../../components/color/attributes":
|
|
63520
|
+
},{"../../components/color/attributes":74,"../../components/drawing/attributes":96,"../../constants/docs":179,"../../constants/numerical":181,"../../lib/extend":196,"../../plot_api/plot_template":237,"../font_attributes":276,"./constants":254}],263:[function(_dereq_,module,exports){
|
|
63413
63521
|
/**
|
|
63414
63522
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63415
63523
|
* All rights reserved.
|
|
@@ -63796,7 +63904,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, fullData) {
|
|
|
63796
63904
|
});
|
|
63797
63905
|
};
|
|
63798
63906
|
|
|
63799
|
-
},{"../../components/color":
|
|
63907
|
+
},{"../../components/color":75,"../../components/fx/helpers":111,"../../components/fx/hovermode_defaults":114,"../../lib":202,"../../plot_api/plot_template":237,"../../registry":290,"../layout_attributes":280,"./axis_defaults":250,"./axis_ids":251,"./constants":254,"./constraints":255,"./layout_attributes":262,"./position_defaults":265,"./type_defaults":273}],264:[function(_dereq_,module,exports){
|
|
63800
63908
|
/**
|
|
63801
63909
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63802
63910
|
* All rights reserved.
|
|
@@ -63861,7 +63969,7 @@ module.exports = function handleLineGridDefaults(containerIn, containerOut, coer
|
|
|
63861
63969
|
}
|
|
63862
63970
|
};
|
|
63863
63971
|
|
|
63864
|
-
},{"../../components/color/attributes":
|
|
63972
|
+
},{"../../components/color/attributes":74,"../../lib":202,"tinycolor2":58}],265:[function(_dereq_,module,exports){
|
|
63865
63973
|
/**
|
|
63866
63974
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63867
63975
|
* All rights reserved.
|
|
@@ -63949,7 +64057,7 @@ module.exports = function handlePositionDefaults(containerIn, containerOut, coer
|
|
|
63949
64057
|
return containerOut;
|
|
63950
64058
|
};
|
|
63951
64059
|
|
|
63952
|
-
},{"../../lib":
|
|
64060
|
+
},{"../../lib":202,"fast-isnumeric":11}],266:[function(_dereq_,module,exports){
|
|
63953
64061
|
/**
|
|
63954
64062
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63955
64063
|
* All rights reserved.
|
|
@@ -63978,7 +64086,7 @@ module.exports = function scaleZoom(ax, factor, centerFraction) {
|
|
|
63978
64086
|
ax.setScale();
|
|
63979
64087
|
};
|
|
63980
64088
|
|
|
63981
|
-
},{"../../constants/alignment":
|
|
64089
|
+
},{"../../constants/alignment":177}],267:[function(_dereq_,module,exports){
|
|
63982
64090
|
/**
|
|
63983
64091
|
* Copyright 2012-2020, Plotly, Inc.
|
|
63984
64092
|
* All rights reserved.
|
|
@@ -64921,7 +65029,7 @@ module.exports = {
|
|
|
64921
65029
|
selectOnClick: selectOnClick
|
|
64922
65030
|
};
|
|
64923
65031
|
|
|
64924
|
-
},{"../../components/color":
|
|
65032
|
+
},{"../../components/color":75,"../../components/dragelement/helpers":93,"../../components/drawing":97,"../../components/fx":115,"../../components/fx/helpers":111,"../../components/shapes/draw_newshape/display_outlines":160,"../../components/shapes/draw_newshape/helpers":161,"../../components/shapes/draw_newshape/newshapes":162,"../../lib":202,"../../lib/clear_gl_canvases":190,"../../lib/polygon":214,"../../lib/throttle":225,"../../plot_api/subroutines":238,"../../registry":290,"./axis_ids":251,"./constants":254,"./handle_outline":258,"./helpers":259,"polybooljs":49}],268:[function(_dereq_,module,exports){
|
|
64925
65033
|
/**
|
|
64926
65034
|
* Copyright 2012-2020, Plotly, Inc.
|
|
64927
65035
|
* All rights reserved.
|
|
@@ -65879,7 +65987,7 @@ module.exports = function setConvert(ax, fullLayout) {
|
|
|
65879
65987
|
delete ax._forceTick0;
|
|
65880
65988
|
};
|
|
65881
65989
|
|
|
65882
|
-
},{"../../constants/numerical":
|
|
65990
|
+
},{"../../constants/numerical":181,"../../lib":202,"./axis_ids":251,"./constants":254,"d3":9,"d3-time-format":7,"fast-isnumeric":11}],269:[function(_dereq_,module,exports){
|
|
65883
65991
|
/**
|
|
65884
65992
|
* Copyright 2012-2020, Plotly, Inc.
|
|
65885
65993
|
* All rights reserved.
|
|
@@ -66006,7 +66114,7 @@ function tickformatstopDefaults(valueIn, valueOut) {
|
|
|
66006
66114
|
}
|
|
66007
66115
|
}
|
|
66008
66116
|
|
|
66009
|
-
},{"../../components/color":
|
|
66117
|
+
},{"../../components/color":75,"../../lib":202,"../array_container_defaults":243,"./layout_attributes":262}],270:[function(_dereq_,module,exports){
|
|
66010
66118
|
/**
|
|
66011
66119
|
* Copyright 2012-2020, Plotly, Inc.
|
|
66012
66120
|
* All rights reserved.
|
|
@@ -66039,7 +66147,7 @@ module.exports = function handleTickDefaults(containerIn, containerOut, coerce,
|
|
|
66039
66147
|
}
|
|
66040
66148
|
};
|
|
66041
66149
|
|
|
66042
|
-
},{"../../lib":
|
|
66150
|
+
},{"../../lib":202,"./layout_attributes":262}],271:[function(_dereq_,module,exports){
|
|
66043
66151
|
/**
|
|
66044
66152
|
* Copyright 2012-2020, Plotly, Inc.
|
|
66045
66153
|
* All rights reserved.
|
|
@@ -66086,7 +66194,7 @@ module.exports = function handleTickValueDefaults(containerIn, containerOut, coe
|
|
|
66086
66194
|
}
|
|
66087
66195
|
};
|
|
66088
66196
|
|
|
66089
|
-
},{"../../lib":
|
|
66197
|
+
},{"../../lib":202,"./clean_ticks":253}],272:[function(_dereq_,module,exports){
|
|
66090
66198
|
/**
|
|
66091
66199
|
* Copyright 2012-2020, Plotly, Inc.
|
|
66092
66200
|
* All rights reserved.
|
|
@@ -66299,7 +66407,7 @@ module.exports = function transitionAxes(gd, edits, transitionOpts, makeOnComple
|
|
|
66299
66407
|
return Promise.resolve();
|
|
66300
66408
|
};
|
|
66301
66409
|
|
|
66302
|
-
},{"../../components/drawing":
|
|
66410
|
+
},{"../../components/drawing":97,"../../lib":202,"../../registry":290,"./axes":248,"d3":9}],273:[function(_dereq_,module,exports){
|
|
66303
66411
|
/**
|
|
66304
66412
|
* Copyright 2012-2020, Plotly, Inc.
|
|
66305
66413
|
* All rights reserved.
|
|
@@ -66439,7 +66547,7 @@ function isBoxWithoutPositionCoords(trace, axLetter) {
|
|
|
66439
66547
|
);
|
|
66440
66548
|
}
|
|
66441
66549
|
|
|
66442
|
-
},{"../../registry":
|
|
66550
|
+
},{"../../registry":290,"./axis_autotype":249}],274:[function(_dereq_,module,exports){
|
|
66443
66551
|
/**
|
|
66444
66552
|
* Copyright 2012-2020, Plotly, Inc.
|
|
66445
66553
|
* All rights reserved.
|
|
@@ -66866,7 +66974,7 @@ function crawl(attrs, callback, path, depth) {
|
|
|
66866
66974
|
});
|
|
66867
66975
|
}
|
|
66868
66976
|
|
|
66869
|
-
},{"../lib":
|
|
66977
|
+
},{"../lib":202,"../registry":290}],275:[function(_dereq_,module,exports){
|
|
66870
66978
|
/**
|
|
66871
66979
|
* Copyright 2012-2020, Plotly, Inc.
|
|
66872
66980
|
* All rights reserved.
|
|
@@ -66978,7 +67086,7 @@ exports.defaults = function(containerOut, layout, coerce, dfltDomains) {
|
|
|
66978
67086
|
if(!(y[0] < y[1])) containerOut.domain.y = dfltY.slice();
|
|
66979
67087
|
};
|
|
66980
67088
|
|
|
66981
|
-
},{"../lib/extend":
|
|
67089
|
+
},{"../lib/extend":196}],276:[function(_dereq_,module,exports){
|
|
66982
67090
|
/**
|
|
66983
67091
|
* Copyright 2012-2020, Plotly, Inc.
|
|
66984
67092
|
* All rights reserved.
|
|
@@ -67043,7 +67151,7 @@ module.exports = function(opts) {
|
|
|
67043
67151
|
return attrs;
|
|
67044
67152
|
};
|
|
67045
67153
|
|
|
67046
|
-
},{}],
|
|
67154
|
+
},{}],277:[function(_dereq_,module,exports){
|
|
67047
67155
|
/**
|
|
67048
67156
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67049
67157
|
* All rights reserved.
|
|
@@ -67089,7 +67197,7 @@ module.exports = {
|
|
|
67089
67197
|
}
|
|
67090
67198
|
};
|
|
67091
67199
|
|
|
67092
|
-
},{}],
|
|
67200
|
+
},{}],278:[function(_dereq_,module,exports){
|
|
67093
67201
|
/**
|
|
67094
67202
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67095
67203
|
* All rights reserved.
|
|
@@ -67218,7 +67326,7 @@ exports.getSubplotData = function getSubplotData(data, type, subplotId) {
|
|
|
67218
67326
|
return subplotData;
|
|
67219
67327
|
};
|
|
67220
67328
|
|
|
67221
|
-
},{"../registry":
|
|
67329
|
+
},{"../registry":290,"./cartesian/constants":254}],279:[function(_dereq_,module,exports){
|
|
67222
67330
|
/**
|
|
67223
67331
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67224
67332
|
* All rights reserved.
|
|
@@ -67252,7 +67360,7 @@ function project(camera, v) {
|
|
|
67252
67360
|
|
|
67253
67361
|
module.exports = project;
|
|
67254
67362
|
|
|
67255
|
-
},{}],
|
|
67363
|
+
},{}],280:[function(_dereq_,module,exports){
|
|
67256
67364
|
/**
|
|
67257
67365
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67258
67366
|
* All rights reserved.
|
|
@@ -67593,7 +67701,7 @@ module.exports = {
|
|
|
67593
67701
|
}
|
|
67594
67702
|
};
|
|
67595
67703
|
|
|
67596
|
-
},{"../components/color/attributes":
|
|
67704
|
+
},{"../components/color/attributes":74,"../components/shapes/draw_newshape/attributes":157,"../lib/extend":196,"./animation_attributes":242,"./font_attributes":276,"./pad_attributes":281}],281:[function(_dereq_,module,exports){
|
|
67597
67705
|
/**
|
|
67598
67706
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67599
67707
|
* All rights reserved.
|
|
@@ -67648,7 +67756,7 @@ module.exports = function(opts) {
|
|
|
67648
67756
|
};
|
|
67649
67757
|
};
|
|
67650
67758
|
|
|
67651
|
-
},{}],
|
|
67759
|
+
},{}],282:[function(_dereq_,module,exports){
|
|
67652
67760
|
/**
|
|
67653
67761
|
* Copyright 2012-2020, Plotly, Inc.
|
|
67654
67762
|
* All rights reserved.
|
|
@@ -71075,7 +71183,7 @@ plots.cleanBasePlot = function(desiredType, newFullData, newFullLayout, oldFullD
|
|
|
71075
71183
|
}
|
|
71076
71184
|
};
|
|
71077
71185
|
|
|
71078
|
-
},{"../components/color":
|
|
71186
|
+
},{"../components/color":75,"../constants/numerical":181,"../lib":202,"../plot_api/plot_schema":236,"../plot_api/plot_template":237,"../plots/get_data":278,"../registry":290,"./animation_attributes":242,"./attributes":244,"./cartesian/axis_ids":251,"./cartesian/handle_outline":258,"./command":274,"./font_attributes":276,"./frame_attributes":277,"./layout_attributes":280,"d3":9,"d3-time-format":7,"fast-isnumeric":11}],283:[function(_dereq_,module,exports){
|
|
71079
71187
|
/**
|
|
71080
71188
|
* Copyright 2012-2020, Plotly, Inc.
|
|
71081
71189
|
* All rights reserved.
|
|
@@ -71119,7 +71227,7 @@ module.exports = {
|
|
|
71119
71227
|
}
|
|
71120
71228
|
};
|
|
71121
71229
|
|
|
71122
|
-
},{"../../../lib/extend":
|
|
71230
|
+
},{"../../../lib/extend":196,"../../../traces/scatter/attributes":330}],284:[function(_dereq_,module,exports){
|
|
71123
71231
|
/**
|
|
71124
71232
|
* Copyright 2012-2020, Plotly, Inc.
|
|
71125
71233
|
* All rights reserved.
|
|
@@ -71241,7 +71349,7 @@ module.exports = overrideAll({
|
|
|
71241
71349
|
}
|
|
71242
71350
|
}, 'plot', 'nested');
|
|
71243
71351
|
|
|
71244
|
-
},{"../../../lib/extend":
|
|
71352
|
+
},{"../../../lib/extend":196,"../../../plot_api/edit_types":230,"../../cartesian/layout_attributes":262}],285:[function(_dereq_,module,exports){
|
|
71245
71353
|
/**
|
|
71246
71354
|
* Copyright 2012-2020, Plotly, Inc.
|
|
71247
71355
|
* All rights reserved.
|
|
@@ -71256,7 +71364,7 @@ var Polar = module.exports = _dereq_('./micropolar');
|
|
|
71256
71364
|
|
|
71257
71365
|
Polar.manager = _dereq_('./micropolar_manager');
|
|
71258
71366
|
|
|
71259
|
-
},{"./micropolar":
|
|
71367
|
+
},{"./micropolar":286,"./micropolar_manager":287}],286:[function(_dereq_,module,exports){
|
|
71260
71368
|
/**
|
|
71261
71369
|
* Copyright 2012-2020, Plotly, Inc.
|
|
71262
71370
|
* All rights reserved.
|
|
@@ -72676,7 +72784,7 @@ var µ = module.exports = { version: '0.2.2' };
|
|
|
72676
72784
|
return exports;
|
|
72677
72785
|
};
|
|
72678
72786
|
|
|
72679
|
-
},{"../../../constants/alignment":
|
|
72787
|
+
},{"../../../constants/alignment":177,"../../../lib":202,"d3":9}],287:[function(_dereq_,module,exports){
|
|
72680
72788
|
/**
|
|
72681
72789
|
* Copyright 2012-2020, Plotly, Inc.
|
|
72682
72790
|
* All rights reserved.
|
|
@@ -72762,7 +72870,7 @@ manager.fillLayout = function(_gd) {
|
|
|
72762
72870
|
_gd._fullLayout = extendDeepAll(dflts, _gd.layout);
|
|
72763
72871
|
};
|
|
72764
72872
|
|
|
72765
|
-
},{"../../../components/color":
|
|
72873
|
+
},{"../../../components/color":75,"../../../lib":202,"./micropolar":286,"./undo_manager":288,"d3":9}],288:[function(_dereq_,module,exports){
|
|
72766
72874
|
/**
|
|
72767
72875
|
* Copyright 2012-2020, Plotly, Inc.
|
|
72768
72876
|
* All rights reserved.
|
|
@@ -72828,7 +72936,7 @@ module.exports = function UndoManager() {
|
|
|
72828
72936
|
};
|
|
72829
72937
|
};
|
|
72830
72938
|
|
|
72831
|
-
},{}],
|
|
72939
|
+
},{}],289:[function(_dereq_,module,exports){
|
|
72832
72940
|
/**
|
|
72833
72941
|
* Copyright 2012-2020, Plotly, Inc.
|
|
72834
72942
|
* All rights reserved.
|
|
@@ -72911,7 +73019,7 @@ exports.texttemplateAttrs = function(opts, extra) {
|
|
|
72911
73019
|
return texttemplate;
|
|
72912
73020
|
};
|
|
72913
73021
|
|
|
72914
|
-
},{"../constants/docs":
|
|
73022
|
+
},{"../constants/docs":179}],290:[function(_dereq_,module,exports){
|
|
72915
73023
|
/**
|
|
72916
73024
|
* Copyright 2012-2020, Plotly, Inc.
|
|
72917
73025
|
* All rights reserved.
|
|
@@ -73377,7 +73485,7 @@ function getTraceType(traceType) {
|
|
|
73377
73485
|
return traceType;
|
|
73378
73486
|
}
|
|
73379
73487
|
|
|
73380
|
-
},{"./lib/dom":
|
|
73488
|
+
},{"./lib/dom":194,"./lib/extend":196,"./lib/is_plain_object":203,"./lib/loggers":206,"./lib/noop":211,"./lib/push_unique":216,"./plots/attributes":244,"./plots/layout_attributes":280}],291:[function(_dereq_,module,exports){
|
|
73381
73489
|
/**
|
|
73382
73490
|
* Copyright 2012-2020, Plotly, Inc.
|
|
73383
73491
|
* All rights reserved.
|
|
@@ -73550,7 +73658,7 @@ module.exports = function clonePlot(graphObj, options) {
|
|
|
73550
73658
|
return plotTile;
|
|
73551
73659
|
};
|
|
73552
73660
|
|
|
73553
|
-
},{"../lib":
|
|
73661
|
+
},{"../lib":202,"../registry":290}],292:[function(_dereq_,module,exports){
|
|
73554
73662
|
/**
|
|
73555
73663
|
* Copyright 2012-2020, Plotly, Inc.
|
|
73556
73664
|
* All rights reserved.
|
|
@@ -73622,7 +73730,7 @@ function downloadImage(gd, opts) {
|
|
|
73622
73730
|
|
|
73623
73731
|
module.exports = downloadImage;
|
|
73624
73732
|
|
|
73625
|
-
},{"../lib":
|
|
73733
|
+
},{"../lib":202,"../plot_api/to_image":240,"./filesaver":293,"./helpers":294}],293:[function(_dereq_,module,exports){
|
|
73626
73734
|
/**
|
|
73627
73735
|
* Copyright 2012-2020, Plotly, Inc.
|
|
73628
73736
|
* All rights reserved.
|
|
@@ -73702,7 +73810,7 @@ function fileSaver(url, name, format) {
|
|
|
73702
73810
|
|
|
73703
73811
|
module.exports = fileSaver;
|
|
73704
73812
|
|
|
73705
|
-
},{"../lib":
|
|
73813
|
+
},{"../lib":202,"./helpers":294}],294:[function(_dereq_,module,exports){
|
|
73706
73814
|
/**
|
|
73707
73815
|
* Copyright 2012-2020, Plotly, Inc.
|
|
73708
73816
|
* All rights reserved.
|
|
@@ -73785,7 +73893,7 @@ exports.IMAGE_URL_PREFIX = /^data:image\/\w+;base64,/;
|
|
|
73785
73893
|
|
|
73786
73894
|
exports.MSG_IE_BAD_FORMAT = 'Sorry IE does not support downloading from canvas. Try {format:\'svg\'} instead.';
|
|
73787
73895
|
|
|
73788
|
-
},{"../registry":
|
|
73896
|
+
},{"../registry":290}],295:[function(_dereq_,module,exports){
|
|
73789
73897
|
/**
|
|
73790
73898
|
* Copyright 2012-2020, Plotly, Inc.
|
|
73791
73899
|
* All rights reserved.
|
|
@@ -73811,7 +73919,7 @@ var Snapshot = {
|
|
|
73811
73919
|
|
|
73812
73920
|
module.exports = Snapshot;
|
|
73813
73921
|
|
|
73814
|
-
},{"./cloneplot":
|
|
73922
|
+
},{"./cloneplot":291,"./download":292,"./helpers":294,"./svgtoimg":296,"./toimage":297,"./tosvg":298}],296:[function(_dereq_,module,exports){
|
|
73815
73923
|
/**
|
|
73816
73924
|
* Copyright 2012-2020, Plotly, Inc.
|
|
73817
73925
|
* All rights reserved.
|
|
@@ -73938,7 +74046,7 @@ function svgToImg(opts) {
|
|
|
73938
74046
|
|
|
73939
74047
|
module.exports = svgToImg;
|
|
73940
74048
|
|
|
73941
|
-
},{"../lib":
|
|
74049
|
+
},{"../lib":202,"./helpers":294,"events":6}],297:[function(_dereq_,module,exports){
|
|
73942
74050
|
/**
|
|
73943
74051
|
* Copyright 2012-2020, Plotly, Inc.
|
|
73944
74052
|
* All rights reserved.
|
|
@@ -74015,7 +74123,7 @@ function toImage(gd, opts) {
|
|
|
74015
74123
|
|
|
74016
74124
|
module.exports = toImage;
|
|
74017
74125
|
|
|
74018
|
-
},{"../lib":
|
|
74126
|
+
},{"../lib":202,"../registry":290,"./cloneplot":291,"./helpers":294,"./svgtoimg":296,"./tosvg":298,"events":6}],298:[function(_dereq_,module,exports){
|
|
74019
74127
|
/**
|
|
74020
74128
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74021
74129
|
* All rights reserved.
|
|
@@ -74204,7 +74312,7 @@ module.exports = function toSVG(gd, format, scale) {
|
|
|
74204
74312
|
return s;
|
|
74205
74313
|
};
|
|
74206
74314
|
|
|
74207
|
-
},{"../components/color":
|
|
74315
|
+
},{"../components/color":75,"../components/drawing":97,"../constants/xmlns_namespaces":182,"../lib":202,"d3":9}],299:[function(_dereq_,module,exports){
|
|
74208
74316
|
/**
|
|
74209
74317
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74210
74318
|
* All rights reserved.
|
|
@@ -74237,7 +74345,7 @@ module.exports = function arraysToCalcdata(cd, trace) {
|
|
|
74237
74345
|
}
|
|
74238
74346
|
};
|
|
74239
74347
|
|
|
74240
|
-
},{"../../lib":
|
|
74348
|
+
},{"../../lib":202}],300:[function(_dereq_,module,exports){
|
|
74241
74349
|
/**
|
|
74242
74350
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74243
74351
|
* All rights reserved.
|
|
@@ -74453,7 +74561,7 @@ module.exports = {
|
|
|
74453
74561
|
}
|
|
74454
74562
|
};
|
|
74455
74563
|
|
|
74456
|
-
},{"../../components/colorscale/attributes":
|
|
74564
|
+
},{"../../components/colorscale/attributes":82,"../../lib/extend":196,"../../plots/font_attributes":276,"../../plots/template_attributes":289,"../scatter/attributes":330,"./constants":302}],301:[function(_dereq_,module,exports){
|
|
74457
74565
|
/**
|
|
74458
74566
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74459
74567
|
* All rights reserved.
|
|
@@ -74532,7 +74640,7 @@ module.exports = function calc(gd, trace) {
|
|
|
74532
74640
|
return cd;
|
|
74533
74641
|
};
|
|
74534
74642
|
|
|
74535
|
-
},{"../../components/colorscale/calc":
|
|
74643
|
+
},{"../../components/colorscale/calc":83,"../../components/colorscale/helpers":86,"../../plots/cartesian/align_period":245,"../../plots/cartesian/axes":248,"../scatter/calc_selection":332,"./arrays_to_calcdata":299}],302:[function(_dereq_,module,exports){
|
|
74536
74644
|
/**
|
|
74537
74645
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74538
74646
|
* All rights reserved.
|
|
@@ -74554,7 +74662,7 @@ module.exports = {
|
|
|
74554
74662
|
eventDataKeys: ['value', 'label']
|
|
74555
74663
|
};
|
|
74556
74664
|
|
|
74557
|
-
},{}],
|
|
74665
|
+
},{}],303:[function(_dereq_,module,exports){
|
|
74558
74666
|
/**
|
|
74559
74667
|
* Copyright 2012-2020, Plotly, Inc.
|
|
74560
74668
|
* All rights reserved.
|
|
@@ -75334,7 +75442,7 @@ module.exports = {
|
|
|
75334
75442
|
setGroupPositions: setGroupPositions
|
|
75335
75443
|
};
|
|
75336
75444
|
|
|
75337
|
-
},{"../../constants/numerical":
|
|
75445
|
+
},{"../../constants/numerical":181,"../../lib":202,"../../plots/cartesian/axes":248,"../../plots/cartesian/constraints":255,"../../registry":290,"./sieve.js":313,"fast-isnumeric":11}],304:[function(_dereq_,module,exports){
|
|
75338
75446
|
/**
|
|
75339
75447
|
* Copyright 2012-2020, Plotly, Inc.
|
|
75340
75448
|
* All rights reserved.
|
|
@@ -75519,7 +75627,7 @@ module.exports = {
|
|
|
75519
75627
|
handleText: handleText
|
|
75520
75628
|
};
|
|
75521
75629
|
|
|
75522
|
-
},{"../../components/color":
|
|
75630
|
+
},{"../../components/color":75,"../../lib":202,"../../plots/cartesian/constraints":255,"../../registry":290,"../scatter/period_defaults":350,"../scatter/xy_defaults":357,"./attributes":300,"./style_defaults":315}],305:[function(_dereq_,module,exports){
|
|
75523
75631
|
/**
|
|
75524
75632
|
* Copyright 2012-2020, Plotly, Inc.
|
|
75525
75633
|
* All rights reserved.
|
|
@@ -75548,7 +75656,7 @@ module.exports = function eventData(out, pt, trace) {
|
|
|
75548
75656
|
return out;
|
|
75549
75657
|
};
|
|
75550
75658
|
|
|
75551
|
-
},{}],
|
|
75659
|
+
},{}],306:[function(_dereq_,module,exports){
|
|
75552
75660
|
/**
|
|
75553
75661
|
* Copyright 2012-2020, Plotly, Inc.
|
|
75554
75662
|
* All rights reserved.
|
|
@@ -75626,7 +75734,7 @@ exports.getLineWidth = function(trace, di) {
|
|
|
75626
75734
|
return w;
|
|
75627
75735
|
};
|
|
75628
75736
|
|
|
75629
|
-
},{"../../lib":
|
|
75737
|
+
},{"../../lib":202,"fast-isnumeric":11,"tinycolor2":58}],307:[function(_dereq_,module,exports){
|
|
75630
75738
|
/**
|
|
75631
75739
|
* Copyright 2012-2020, Plotly, Inc.
|
|
75632
75740
|
* All rights reserved.
|
|
@@ -75822,7 +75930,7 @@ module.exports = {
|
|
|
75822
75930
|
getTraceColor: getTraceColor
|
|
75823
75931
|
};
|
|
75824
75932
|
|
|
75825
|
-
},{"../../components/color":
|
|
75933
|
+
},{"../../components/color":75,"../../components/fx":115,"../../constants/numerical":181,"../../lib":202,"../../plots/cartesian/axes":248,"../../registry":290,"./helpers":306}],308:[function(_dereq_,module,exports){
|
|
75826
75934
|
/**
|
|
75827
75935
|
* Copyright 2012-2020, Plotly, Inc.
|
|
75828
75936
|
* All rights reserved.
|
|
@@ -75860,7 +75968,7 @@ module.exports = {
|
|
|
75860
75968
|
}
|
|
75861
75969
|
};
|
|
75862
75970
|
|
|
75863
|
-
},{"../../plots/cartesian":
|
|
75971
|
+
},{"../../plots/cartesian":261,"../scatter/marker_colorbar":348,"./arrays_to_calcdata":299,"./attributes":300,"./calc":301,"./cross_trace_calc":303,"./defaults":304,"./event_data":305,"./hover":307,"./layout_attributes":309,"./layout_defaults":310,"./plot":311,"./select":312,"./style":314}],309:[function(_dereq_,module,exports){
|
|
75864
75972
|
/**
|
|
75865
75973
|
* Copyright 2012-2020, Plotly, Inc.
|
|
75866
75974
|
* All rights reserved.
|
|
@@ -75908,7 +76016,7 @@ module.exports = {
|
|
|
75908
76016
|
}
|
|
75909
76017
|
};
|
|
75910
76018
|
|
|
75911
|
-
},{}],
|
|
76019
|
+
},{}],310:[function(_dereq_,module,exports){
|
|
75912
76020
|
/**
|
|
75913
76021
|
* Copyright 2012-2020, Plotly, Inc.
|
|
75914
76022
|
* All rights reserved.
|
|
@@ -75968,7 +76076,7 @@ module.exports = function(layoutIn, layoutOut, fullData) {
|
|
|
75968
76076
|
coerce('bargroupgap');
|
|
75969
76077
|
};
|
|
75970
76078
|
|
|
75971
|
-
},{"../../lib":
|
|
76079
|
+
},{"../../lib":202,"../../plots/cartesian/axes":248,"../../registry":290,"./layout_attributes":309}],311:[function(_dereq_,module,exports){
|
|
75972
76080
|
/**
|
|
75973
76081
|
* Copyright 2012-2020, Plotly, Inc.
|
|
75974
76082
|
* All rights reserved.
|
|
@@ -76753,7 +76861,7 @@ module.exports = {
|
|
|
76753
76861
|
toMoveInsideBar: toMoveInsideBar
|
|
76754
76862
|
};
|
|
76755
76863
|
|
|
76756
|
-
},{"../../components/color":
|
|
76864
|
+
},{"../../components/color":75,"../../components/drawing":97,"../../components/fx/helpers":111,"../../lib":202,"../../lib/svg_text_utils":224,"../../plots/cartesian/axes":248,"../../registry":290,"./attributes":300,"./constants":302,"./helpers":306,"./style":314,"./uniform_text":316,"d3":9,"fast-isnumeric":11}],312:[function(_dereq_,module,exports){
|
|
76757
76865
|
/**
|
|
76758
76866
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76759
76867
|
* All rights reserved.
|
|
@@ -76817,7 +76925,7 @@ function getCentroid(d, xa, ya, isHorizontal, isFunnel) {
|
|
|
76817
76925
|
}
|
|
76818
76926
|
}
|
|
76819
76927
|
|
|
76820
|
-
},{}],
|
|
76928
|
+
},{}],313:[function(_dereq_,module,exports){
|
|
76821
76929
|
/**
|
|
76822
76930
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76823
76931
|
* All rights reserved.
|
|
@@ -76931,7 +77039,7 @@ Sieve.prototype.getLabel = function getLabel(position, value) {
|
|
|
76931
77039
|
return prefix + label;
|
|
76932
77040
|
};
|
|
76933
77041
|
|
|
76934
|
-
},{"../../constants/numerical":
|
|
77042
|
+
},{"../../constants/numerical":181,"../../lib":202}],314:[function(_dereq_,module,exports){
|
|
76935
77043
|
/**
|
|
76936
77044
|
* Copyright 2012-2020, Plotly, Inc.
|
|
76937
77045
|
* All rights reserved.
|
|
@@ -77113,7 +77221,7 @@ module.exports = {
|
|
|
77113
77221
|
resizeText: resizeText
|
|
77114
77222
|
};
|
|
77115
77223
|
|
|
77116
|
-
},{"../../components/color":
|
|
77224
|
+
},{"../../components/color":75,"../../components/drawing":97,"../../lib":202,"../../registry":290,"./attributes":300,"./helpers":306,"./uniform_text":316,"d3":9}],315:[function(_dereq_,module,exports){
|
|
77117
77225
|
/**
|
|
77118
77226
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77119
77227
|
* All rights reserved.
|
|
@@ -77151,7 +77259,7 @@ module.exports = function handleStyleDefaults(traceIn, traceOut, coerce, default
|
|
|
77151
77259
|
coerce('unselected.marker.color');
|
|
77152
77260
|
};
|
|
77153
77261
|
|
|
77154
|
-
},{"../../components/color":
|
|
77262
|
+
},{"../../components/color":75,"../../components/colorscale/defaults":85,"../../components/colorscale/helpers":86}],316:[function(_dereq_,module,exports){
|
|
77155
77263
|
/**
|
|
77156
77264
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77157
77265
|
* All rights reserved.
|
|
@@ -77237,7 +77345,7 @@ module.exports = {
|
|
|
77237
77345
|
resizeText: resizeText
|
|
77238
77346
|
};
|
|
77239
77347
|
|
|
77240
|
-
},{"../../lib":
|
|
77348
|
+
},{"../../lib":202,"d3":9}],317:[function(_dereq_,module,exports){
|
|
77241
77349
|
/**
|
|
77242
77350
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77243
77351
|
* All rights reserved.
|
|
@@ -77508,7 +77616,7 @@ module.exports = {
|
|
|
77508
77616
|
}
|
|
77509
77617
|
};
|
|
77510
77618
|
|
|
77511
|
-
},{"../../components/color/attributes":
|
|
77619
|
+
},{"../../components/color/attributes":74,"../../lib/extend":196,"../../plots/attributes":244,"../../plots/domain":275,"../../plots/font_attributes":276,"../../plots/template_attributes":289}],318:[function(_dereq_,module,exports){
|
|
77512
77620
|
/**
|
|
77513
77621
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77514
77622
|
* All rights reserved.
|
|
@@ -77531,7 +77639,7 @@ exports.clean = function(newFullData, newFullLayout, oldFullData, oldFullLayout)
|
|
|
77531
77639
|
plots.cleanBasePlot(exports.name, newFullData, newFullLayout, oldFullData, oldFullLayout);
|
|
77532
77640
|
};
|
|
77533
77641
|
|
|
77534
|
-
},{"../../plots/plots":
|
|
77642
|
+
},{"../../plots/plots":282}],319:[function(_dereq_,module,exports){
|
|
77535
77643
|
/**
|
|
77536
77644
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77537
77645
|
* All rights reserved.
|
|
@@ -77714,7 +77822,7 @@ module.exports = {
|
|
|
77714
77822
|
generateExtendedColors: generateExtendedColors
|
|
77715
77823
|
};
|
|
77716
77824
|
|
|
77717
|
-
},{"../../components/color":
|
|
77825
|
+
},{"../../components/color":75,"fast-isnumeric":11,"tinycolor2":58}],320:[function(_dereq_,module,exports){
|
|
77718
77826
|
/**
|
|
77719
77827
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77720
77828
|
* All rights reserved.
|
|
@@ -77845,7 +77953,7 @@ module.exports = {
|
|
|
77845
77953
|
supplyDefaults: supplyDefaults
|
|
77846
77954
|
};
|
|
77847
77955
|
|
|
77848
|
-
},{"../../lib":
|
|
77956
|
+
},{"../../lib":202,"../../plots/domain":275,"../bar/defaults":304,"./attributes":317,"fast-isnumeric":11}],321:[function(_dereq_,module,exports){
|
|
77849
77957
|
/**
|
|
77850
77958
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77851
77959
|
* All rights reserved.
|
|
@@ -77894,7 +78002,7 @@ module.exports = function eventData(pt, trace) {
|
|
|
77894
78002
|
return out;
|
|
77895
78003
|
};
|
|
77896
78004
|
|
|
77897
|
-
},{"../../components/fx/helpers":
|
|
78005
|
+
},{"../../components/fx/helpers":111}],322:[function(_dereq_,module,exports){
|
|
77898
78006
|
/**
|
|
77899
78007
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77900
78008
|
* All rights reserved.
|
|
@@ -77942,7 +78050,7 @@ exports.getRotationAngle = function(rotation) {
|
|
|
77942
78050
|
return (rotation === 'auto' ? 0 : rotation) * Math.PI / 180;
|
|
77943
78051
|
};
|
|
77944
78052
|
|
|
77945
|
-
},{"../../lib":
|
|
78053
|
+
},{"../../lib":202}],323:[function(_dereq_,module,exports){
|
|
77946
78054
|
/**
|
|
77947
78055
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77948
78056
|
* All rights reserved.
|
|
@@ -77975,7 +78083,7 @@ module.exports = {
|
|
|
77975
78083
|
}
|
|
77976
78084
|
};
|
|
77977
78085
|
|
|
77978
|
-
},{"./attributes":
|
|
78086
|
+
},{"./attributes":317,"./base_plot":318,"./calc":319,"./defaults":320,"./layout_attributes":324,"./layout_defaults":325,"./plot":326,"./style":327,"./style_one":328}],324:[function(_dereq_,module,exports){
|
|
77979
78087
|
/**
|
|
77980
78088
|
* Copyright 2012-2020, Plotly, Inc.
|
|
77981
78089
|
* All rights reserved.
|
|
@@ -78008,7 +78116,7 @@ module.exports = {
|
|
|
78008
78116
|
}
|
|
78009
78117
|
};
|
|
78010
78118
|
|
|
78011
|
-
},{}],
|
|
78119
|
+
},{}],325:[function(_dereq_,module,exports){
|
|
78012
78120
|
/**
|
|
78013
78121
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78014
78122
|
* All rights reserved.
|
|
@@ -78033,7 +78141,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut) {
|
|
|
78033
78141
|
coerce('extendpiecolors');
|
|
78034
78142
|
};
|
|
78035
78143
|
|
|
78036
|
-
},{"../../lib":
|
|
78144
|
+
},{"../../lib":202,"./layout_attributes":324}],326:[function(_dereq_,module,exports){
|
|
78037
78145
|
/**
|
|
78038
78146
|
* Copyright 2012-2020, Plotly, Inc.
|
|
78039
78147
|
* All rights reserved.
|
|
@@ -79213,7 +79321,7 @@ module.exports = {
|
|
|
79213
79321
|
computeTransform: computeTransform
|
|
79214
79322
|
};
|
|
79215
79323
|
|
|
79216
|
-
},{"../../components/color":
|
|
79324
|
+
},{"../../components/color":75,"../../components/drawing":97,"../../components/fx":115,"../../lib":202,"../../lib/svg_text_utils":224,"../../plots/plots":282,"../bar/constants":302,"../bar/uniform_text":316,"./event_data":321,"./helpers":322,"d3":9}],327:[function(_dereq_,module,exports){
|
|
79217
79325
|
/**
|
|
79218
79326
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79219
79327
|
* All rights reserved.
|
|
@@ -79246,7 +79354,7 @@ module.exports = function style(gd) {
|
|
|
79246
79354
|
});
|
|
79247
79355
|
};
|
|
79248
79356
|
|
|
79249
|
-
},{"../bar/uniform_text":
|
|
79357
|
+
},{"../bar/uniform_text":316,"./style_one":328,"d3":9}],328:[function(_dereq_,module,exports){
|
|
79250
79358
|
/**
|
|
79251
79359
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79252
79360
|
* All rights reserved.
|
|
@@ -79270,7 +79378,7 @@ module.exports = function styleOne(s, pt, trace) {
|
|
|
79270
79378
|
.call(Color.stroke, lineColor);
|
|
79271
79379
|
};
|
|
79272
79380
|
|
|
79273
|
-
},{"../../components/color":
|
|
79381
|
+
},{"../../components/color":75,"./helpers":322}],329:[function(_dereq_,module,exports){
|
|
79274
79382
|
/**
|
|
79275
79383
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79276
79384
|
* All rights reserved.
|
|
@@ -79322,7 +79430,7 @@ module.exports = function arraysToCalcdata(cd, trace) {
|
|
|
79322
79430
|
}
|
|
79323
79431
|
};
|
|
79324
79432
|
|
|
79325
|
-
},{"../../lib":
|
|
79433
|
+
},{"../../lib":202}],330:[function(_dereq_,module,exports){
|
|
79326
79434
|
/**
|
|
79327
79435
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79328
79436
|
* All rights reserved.
|
|
@@ -79776,7 +79884,7 @@ module.exports = {
|
|
|
79776
79884
|
}
|
|
79777
79885
|
};
|
|
79778
79886
|
|
|
79779
|
-
},{"../../components/colorscale/attributes":
|
|
79887
|
+
},{"../../components/colorscale/attributes":82,"../../components/drawing":97,"../../components/drawing/attributes":96,"../../lib/extend":196,"../../plots/font_attributes":276,"../../plots/template_attributes":289,"./constants":334}],331:[function(_dereq_,module,exports){
|
|
79780
79888
|
/**
|
|
79781
79889
|
* Copyright 2012-2020, Plotly, Inc.
|
|
79782
79890
|
* All rights reserved.
|
|
@@ -80075,7 +80183,7 @@ module.exports = {
|
|
|
80075
80183
|
getStackOpts: getStackOpts
|
|
80076
80184
|
};
|
|
80077
80185
|
|
|
80078
|
-
},{"../../constants/numerical":
|
|
80186
|
+
},{"../../constants/numerical":181,"../../lib":202,"../../plots/cartesian/align_period":245,"../../plots/cartesian/axes":248,"./arrays_to_calcdata":329,"./calc_selection":332,"./colorscale_calc":333,"./subtypes":355,"fast-isnumeric":11}],332:[function(_dereq_,module,exports){
|
|
80079
80187
|
/**
|
|
80080
80188
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80081
80189
|
* All rights reserved.
|
|
@@ -80094,7 +80202,7 @@ module.exports = function calcSelection(cd, trace) {
|
|
|
80094
80202
|
}
|
|
80095
80203
|
};
|
|
80096
80204
|
|
|
80097
|
-
},{"../../lib":
|
|
80205
|
+
},{"../../lib":202}],333:[function(_dereq_,module,exports){
|
|
80098
80206
|
/**
|
|
80099
80207
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80100
80208
|
* All rights reserved.
|
|
@@ -80137,7 +80245,7 @@ module.exports = function calcMarkerColorscale(gd, trace) {
|
|
|
80137
80245
|
}
|
|
80138
80246
|
};
|
|
80139
80247
|
|
|
80140
|
-
},{"../../components/colorscale/calc":
|
|
80248
|
+
},{"../../components/colorscale/calc":83,"../../components/colorscale/helpers":86,"./subtypes":355}],334:[function(_dereq_,module,exports){
|
|
80141
80249
|
/**
|
|
80142
80250
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80143
80251
|
* All rights reserved.
|
|
@@ -80166,7 +80274,7 @@ module.exports = {
|
|
|
80166
80274
|
eventDataKeys: []
|
|
80167
80275
|
};
|
|
80168
80276
|
|
|
80169
|
-
},{}],
|
|
80277
|
+
},{}],335:[function(_dereq_,module,exports){
|
|
80170
80278
|
/**
|
|
80171
80279
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80172
80280
|
* All rights reserved.
|
|
@@ -80347,7 +80455,7 @@ function getInterp(calcTrace, index, position, posAttr) {
|
|
|
80347
80455
|
return pt0.s + (pt1.s - pt0.s) * (position - pt0[posAttr]) / (pt1[posAttr] - pt0[posAttr]);
|
|
80348
80456
|
}
|
|
80349
80457
|
|
|
80350
|
-
},{"./calc":
|
|
80458
|
+
},{"./calc":331}],336:[function(_dereq_,module,exports){
|
|
80351
80459
|
/**
|
|
80352
80460
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80353
80461
|
* All rights reserved.
|
|
@@ -80386,7 +80494,7 @@ module.exports = function crossTraceDefaults(fullData) {
|
|
|
80386
80494
|
}
|
|
80387
80495
|
};
|
|
80388
80496
|
|
|
80389
|
-
},{}],
|
|
80497
|
+
},{}],337:[function(_dereq_,module,exports){
|
|
80390
80498
|
/**
|
|
80391
80499
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80392
80500
|
* All rights reserved.
|
|
@@ -80479,7 +80587,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
80479
80587
|
Lib.coerceSelectionMarkerOpacity(traceOut, coerce);
|
|
80480
80588
|
};
|
|
80481
80589
|
|
|
80482
|
-
},{"../../lib":
|
|
80590
|
+
},{"../../lib":202,"../../registry":290,"./attributes":330,"./constants":334,"./fillcolor_defaults":338,"./line_defaults":343,"./line_shape_defaults":345,"./marker_defaults":349,"./period_defaults":350,"./stack_defaults":353,"./subtypes":355,"./text_defaults":356,"./xy_defaults":357}],338:[function(_dereq_,module,exports){
|
|
80483
80591
|
/**
|
|
80484
80592
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80485
80593
|
* All rights reserved.
|
|
@@ -80516,7 +80624,7 @@ module.exports = function fillColorDefaults(traceIn, traceOut, defaultColor, coe
|
|
|
80516
80624
|
));
|
|
80517
80625
|
};
|
|
80518
80626
|
|
|
80519
|
-
},{"../../components/color":
|
|
80627
|
+
},{"../../components/color":75,"../../lib":202}],339:[function(_dereq_,module,exports){
|
|
80520
80628
|
/**
|
|
80521
80629
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80522
80630
|
* All rights reserved.
|
|
@@ -80542,7 +80650,7 @@ module.exports = function formatLabels(cdi, trace, fullLayout) {
|
|
|
80542
80650
|
return labels;
|
|
80543
80651
|
};
|
|
80544
80652
|
|
|
80545
|
-
},{"../../plots/cartesian/axes":
|
|
80653
|
+
},{"../../plots/cartesian/axes":248}],340:[function(_dereq_,module,exports){
|
|
80546
80654
|
/**
|
|
80547
80655
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80548
80656
|
* All rights reserved.
|
|
@@ -80591,7 +80699,7 @@ module.exports = function getTraceColor(trace, di) {
|
|
|
80591
80699
|
}
|
|
80592
80700
|
};
|
|
80593
80701
|
|
|
80594
|
-
},{"../../components/color":
|
|
80702
|
+
},{"../../components/color":75,"./subtypes":355}],341:[function(_dereq_,module,exports){
|
|
80595
80703
|
/**
|
|
80596
80704
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80597
80705
|
* All rights reserved.
|
|
@@ -80786,7 +80894,7 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode) {
|
|
|
80786
80894
|
}
|
|
80787
80895
|
};
|
|
80788
80896
|
|
|
80789
|
-
},{"../../components/color":
|
|
80897
|
+
},{"../../components/color":75,"../../components/fx":115,"../../lib":202,"../../registry":290,"./get_trace_color":340}],342:[function(_dereq_,module,exports){
|
|
80790
80898
|
/**
|
|
80791
80899
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80792
80900
|
* All rights reserved.
|
|
@@ -80832,7 +80940,7 @@ module.exports = {
|
|
|
80832
80940
|
}
|
|
80833
80941
|
};
|
|
80834
80942
|
|
|
80835
|
-
},{"../../plots/cartesian":
|
|
80943
|
+
},{"../../plots/cartesian":261,"./arrays_to_calcdata":329,"./attributes":330,"./calc":331,"./cross_trace_calc":335,"./cross_trace_defaults":336,"./defaults":337,"./format_labels":339,"./hover":341,"./marker_colorbar":348,"./plot":351,"./select":352,"./style":354,"./subtypes":355}],343:[function(_dereq_,module,exports){
|
|
80836
80944
|
/**
|
|
80837
80945
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80838
80946
|
* All rights reserved.
|
|
@@ -80863,7 +80971,7 @@ module.exports = function lineDefaults(traceIn, traceOut, defaultColor, layout,
|
|
|
80863
80971
|
if(!(opts || {}).noDash) coerce('line.dash');
|
|
80864
80972
|
};
|
|
80865
80973
|
|
|
80866
|
-
},{"../../components/colorscale/defaults":
|
|
80974
|
+
},{"../../components/colorscale/defaults":85,"../../components/colorscale/helpers":86,"../../lib":202}],344:[function(_dereq_,module,exports){
|
|
80867
80975
|
/**
|
|
80868
80976
|
* Copyright 2012-2020, Plotly, Inc.
|
|
80869
80977
|
* All rights reserved.
|
|
@@ -81324,7 +81432,7 @@ module.exports = function linePoints(d, opts) {
|
|
|
81324
81432
|
return segments;
|
|
81325
81433
|
};
|
|
81326
81434
|
|
|
81327
|
-
},{"../../constants/numerical":
|
|
81435
|
+
},{"../../constants/numerical":181,"../../lib":202,"./constants":334}],345:[function(_dereq_,module,exports){
|
|
81328
81436
|
/**
|
|
81329
81437
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81330
81438
|
* All rights reserved.
|
|
@@ -81343,7 +81451,7 @@ module.exports = function handleLineShapeDefaults(traceIn, traceOut, coerce) {
|
|
|
81343
81451
|
if(shape === 'spline') coerce('line.smoothing');
|
|
81344
81452
|
};
|
|
81345
81453
|
|
|
81346
|
-
},{}],
|
|
81454
|
+
},{}],346:[function(_dereq_,module,exports){
|
|
81347
81455
|
/**
|
|
81348
81456
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81349
81457
|
* All rights reserved.
|
|
@@ -81433,7 +81541,7 @@ module.exports = function linkTraces(gd, plotinfo, cdscatter) {
|
|
|
81433
81541
|
return cdscatterSorted;
|
|
81434
81542
|
};
|
|
81435
81543
|
|
|
81436
|
-
},{}],
|
|
81544
|
+
},{}],347:[function(_dereq_,module,exports){
|
|
81437
81545
|
/**
|
|
81438
81546
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81439
81547
|
* All rights reserved.
|
|
@@ -81475,7 +81583,7 @@ module.exports = function makeBubbleSizeFn(trace) {
|
|
|
81475
81583
|
};
|
|
81476
81584
|
};
|
|
81477
81585
|
|
|
81478
|
-
},{"fast-isnumeric":11}],
|
|
81586
|
+
},{"fast-isnumeric":11}],348:[function(_dereq_,module,exports){
|
|
81479
81587
|
/**
|
|
81480
81588
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81481
81589
|
* All rights reserved.
|
|
@@ -81493,7 +81601,7 @@ module.exports = {
|
|
|
81493
81601
|
max: 'cmax'
|
|
81494
81602
|
};
|
|
81495
81603
|
|
|
81496
|
-
},{}],
|
|
81604
|
+
},{}],349:[function(_dereq_,module,exports){
|
|
81497
81605
|
/**
|
|
81498
81606
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81499
81607
|
* All rights reserved.
|
|
@@ -81574,7 +81682,7 @@ module.exports = function markerDefaults(traceIn, traceOut, defaultColor, layout
|
|
|
81574
81682
|
}
|
|
81575
81683
|
};
|
|
81576
81684
|
|
|
81577
|
-
},{"../../components/color":
|
|
81685
|
+
},{"../../components/color":75,"../../components/colorscale/defaults":85,"../../components/colorscale/helpers":86,"./subtypes":355}],350:[function(_dereq_,module,exports){
|
|
81578
81686
|
/**
|
|
81579
81687
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81580
81688
|
* All rights reserved.
|
|
@@ -81621,7 +81729,7 @@ module.exports = function handlePeriodDefaults(traceIn, traceOut, layout, coerce
|
|
|
81621
81729
|
}
|
|
81622
81730
|
};
|
|
81623
81731
|
|
|
81624
|
-
},{"../../constants/numerical":
|
|
81732
|
+
},{"../../constants/numerical":181,"../../lib":202}],351:[function(_dereq_,module,exports){
|
|
81625
81733
|
/**
|
|
81626
81734
|
* Copyright 2012-2020, Plotly, Inc.
|
|
81627
81735
|
* All rights reserved.
|
|
@@ -82115,7 +82223,7 @@ function plotOne(gd, idx, plotinfo, cdscatter, cdscatterAll, element, transition
|
|
|
82115
82223
|
join.selectAll('text')
|
|
82116
82224
|
.call(Drawing.textPointStyle, trace, gd)
|
|
82117
82225
|
.each(function(d) {
|
|
82118
|
-
// This just *has* to be totally custom
|
|
82226
|
+
// This just *has* to be totally custom because of SVG text positioning :(
|
|
82119
82227
|
// It's obviously copied from translatePoint; we just can't use that
|
|
82120
82228
|
var x = xa.c2p(d.x);
|
|
82121
82229
|
var y = ya.c2p(d.y);
|
|
@@ -82182,7 +82290,7 @@ function selectMarkers(gd, idx, plotinfo, cdscatter, cdscatterAll) {
|
|
|
82182
82290
|
});
|
|
82183
82291
|
}
|
|
82184
82292
|
|
|
82185
|
-
},{"../../components/drawing":
|
|
82293
|
+
},{"../../components/drawing":97,"../../lib":202,"../../lib/polygon":214,"../../registry":290,"./line_points":344,"./link_traces":346,"./subtypes":355,"d3":9}],352:[function(_dereq_,module,exports){
|
|
82186
82294
|
/**
|
|
82187
82295
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82188
82296
|
* All rights reserved.
|
|
@@ -82236,7 +82344,7 @@ module.exports = function selectPoints(searchInfo, selectionTester) {
|
|
|
82236
82344
|
return selection;
|
|
82237
82345
|
};
|
|
82238
82346
|
|
|
82239
|
-
},{"./subtypes":
|
|
82347
|
+
},{"./subtypes":355}],353:[function(_dereq_,module,exports){
|
|
82240
82348
|
/**
|
|
82241
82349
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82242
82350
|
* All rights reserved.
|
|
@@ -82341,7 +82449,7 @@ module.exports = function handleStackDefaults(traceIn, traceOut, layout, coerce)
|
|
|
82341
82449
|
}
|
|
82342
82450
|
};
|
|
82343
82451
|
|
|
82344
|
-
},{}],
|
|
82452
|
+
},{}],354:[function(_dereq_,module,exports){
|
|
82345
82453
|
/**
|
|
82346
82454
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82347
82455
|
* All rights reserved.
|
|
@@ -82412,7 +82520,7 @@ module.exports = {
|
|
|
82412
82520
|
styleOnSelect: styleOnSelect
|
|
82413
82521
|
};
|
|
82414
82522
|
|
|
82415
|
-
},{"../../components/drawing":
|
|
82523
|
+
},{"../../components/drawing":97,"../../registry":290,"d3":9}],355:[function(_dereq_,module,exports){
|
|
82416
82524
|
/**
|
|
82417
82525
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82418
82526
|
* All rights reserved.
|
|
@@ -82451,7 +82559,7 @@ module.exports = {
|
|
|
82451
82559
|
}
|
|
82452
82560
|
};
|
|
82453
82561
|
|
|
82454
|
-
},{"../../lib":
|
|
82562
|
+
},{"../../lib":202}],356:[function(_dereq_,module,exports){
|
|
82455
82563
|
/**
|
|
82456
82564
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82457
82565
|
* All rights reserved.
|
|
@@ -82481,7 +82589,7 @@ module.exports = function(traceIn, traceOut, layout, coerce, opts) {
|
|
|
82481
82589
|
}
|
|
82482
82590
|
};
|
|
82483
82591
|
|
|
82484
|
-
},{"../../lib":
|
|
82592
|
+
},{"../../lib":202}],357:[function(_dereq_,module,exports){
|
|
82485
82593
|
/**
|
|
82486
82594
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82487
82595
|
* All rights reserved.
|
|
@@ -82525,7 +82633,7 @@ module.exports = function handleXYDefaults(traceIn, traceOut, layout, coerce) {
|
|
|
82525
82633
|
return len;
|
|
82526
82634
|
};
|
|
82527
82635
|
|
|
82528
|
-
},{"../../lib":
|
|
82636
|
+
},{"../../lib":202,"../../registry":290}],358:[function(_dereq_,module,exports){
|
|
82529
82637
|
/**
|
|
82530
82638
|
* Copyright 2012-2020, Plotly, Inc.
|
|
82531
82639
|
* All rights reserved.
|
|
@@ -82537,7 +82645,7 @@ module.exports = function handleXYDefaults(traceIn, traceOut, layout, coerce) {
|
|
|
82537
82645
|
'use strict';
|
|
82538
82646
|
|
|
82539
82647
|
// package version injected by `npm run preprocess`
|
|
82540
|
-
exports.version = '1.58.
|
|
82648
|
+
exports.version = '1.58.4';
|
|
82541
82649
|
|
|
82542
82650
|
},{}]},{},[4])(4)
|
|
82543
82651
|
});
|