-
Notifications
You must be signed in to change notification settings - Fork 0
/
d3.js
208 lines (205 loc) · 6.34 KB
/
d3.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('d3-transition'), require('d3-drag'), require('d3-selection'), require('d3-dispatch'), require('d3-collection'), require('d3-array'), require('d3-fetch'), require('d3-shape'), require('d3-scale'), require('d3-axis'), require('d3-request'), require('d3-force'), require('d3-ease'), require('d3-format'), require('d3-time-format')) :
typeof define === 'function' && define.amd ? define(['exports', 'd3-transition', 'd3-drag', 'd3-selection', 'd3-dispatch', 'd3-collection', 'd3-array', 'd3-fetch', 'd3-shape', 'd3-scale', 'd3-axis', 'd3-request', 'd3-force', 'd3-ease', 'd3-format', 'd3-time-format'], factory) :
(global = global || self, factory(global.d3 = {}, null, null, global.d3Selection, global.d3Dispatch, global.d3Collection, global.d3Array, global.d3Fetch, global.d3Shape, global.d3Scale, global.d3Axis, global.d3Request, global.d3Force, global.d3Ease, global.d3Format, global.d3TimeFormat));
}(this, function (exports, d3Transition, d3Drag, d3Selection, d3Dispatch, d3Collection, d3Array, d3Fetch, d3Shape, d3Scale, d3Axis, d3Request, d3Force, d3Ease, d3Format, d3TimeFormat) { 'use strict';
Object.defineProperty(exports, 'event', {
enumerable: true,
get: function () {
return d3Selection.event;
}
});
Object.defineProperty(exports, 'mouse', {
enumerable: true,
get: function () {
return d3Selection.mouse;
}
});
Object.defineProperty(exports, 'select', {
enumerable: true,
get: function () {
return d3Selection.select;
}
});
Object.defineProperty(exports, 'selectAll', {
enumerable: true,
get: function () {
return d3Selection.selectAll;
}
});
Object.defineProperty(exports, 'dispatch', {
enumerable: true,
get: function () {
return d3Dispatch.dispatch;
}
});
Object.defineProperty(exports, 'nest', {
enumerable: true,
get: function () {
return d3Collection.nest;
}
});
Object.defineProperty(exports, 'bisector', {
enumerable: true,
get: function () {
return d3Array.bisector;
}
});
Object.defineProperty(exports, 'group', {
enumerable: true,
get: function () {
return d3Array.group;
}
});
Object.defineProperty(exports, 'max', {
enumerable: true,
get: function () {
return d3Array.max;
}
});
Object.defineProperty(exports, 'min', {
enumerable: true,
get: function () {
return d3Array.min;
}
});
Object.defineProperty(exports, 'range', {
enumerable: true,
get: function () {
return d3Array.range;
}
});
Object.defineProperty(exports, 'json', {
enumerable: true,
get: function () {
return d3Fetch.json;
}
});
Object.defineProperty(exports, 'arc', {
enumerable: true,
get: function () {
return d3Shape.arc;
}
});
Object.defineProperty(exports, 'area', {
enumerable: true,
get: function () {
return d3Shape.area;
}
});
Object.defineProperty(exports, 'curveCardinal', {
enumerable: true,
get: function () {
return d3Shape.curveCardinal;
}
});
Object.defineProperty(exports, 'curveLinear', {
enumerable: true,
get: function () {
return d3Shape.curveLinear;
}
});
Object.defineProperty(exports, 'line', {
enumerable: true,
get: function () {
return d3Shape.line;
}
});
Object.defineProperty(exports, 'scaleBand', {
enumerable: true,
get: function () {
return d3Scale.scaleBand;
}
});
Object.defineProperty(exports, 'scaleLinear', {
enumerable: true,
get: function () {
return d3Scale.scaleLinear;
}
});
Object.defineProperty(exports, 'scaleOrdinal', {
enumerable: true,
get: function () {
return d3Scale.scaleOrdinal;
}
});
Object.defineProperty(exports, 'scaleTime', {
enumerable: true,
get: function () {
return d3Scale.scaleTime;
}
});
Object.defineProperty(exports, 'axisBottom', {
enumerable: true,
get: function () {
return d3Axis.axisBottom;
}
});
Object.defineProperty(exports, 'axisLeft', {
enumerable: true,
get: function () {
return d3Axis.axisLeft;
}
});
Object.defineProperty(exports, 'csv', {
enumerable: true,
get: function () {
return d3Request.csv;
}
});
Object.defineProperty(exports, 'forceCenter', {
enumerable: true,
get: function () {
return d3Force.forceCenter;
}
});
Object.defineProperty(exports, 'forceCollide', {
enumerable: true,
get: function () {
return d3Force.forceCollide;
}
});
Object.defineProperty(exports, 'forceManyBody', {
enumerable: true,
get: function () {
return d3Force.forceManyBody;
}
});
Object.defineProperty(exports, 'forceSimulation', {
enumerable: true,
get: function () {
return d3Force.forceSimulation;
}
});
Object.defineProperty(exports, 'forceX', {
enumerable: true,
get: function () {
return d3Force.forceX;
}
});
Object.defineProperty(exports, 'forceY', {
enumerable: true,
get: function () {
return d3Force.forceY;
}
});
Object.defineProperty(exports, 'easeLinear', {
enumerable: true,
get: function () {
return d3Ease.easeLinear;
}
});
Object.defineProperty(exports, 'format', {
enumerable: true,
get: function () {
return d3Format.format;
}
});
Object.defineProperty(exports, 'timeFormat', {
enumerable: true,
get: function () {
return d3TimeFormat.timeFormat;
}
});
Object.defineProperty(exports, '__esModule', { value: true });
}));