-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathattributes.js
483 lines (473 loc) · 15.7 KB
/
attributes.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
/**
* Copyright 2012-2018, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
var colorAttributes = require('../../components/colorscale/attributes');
var colorbarAttrs = require('../../components/colorbar/attributes');
var fontAttrs = require('../../plots/font_attributes');
var dash = require('../../components/drawing/attributes').dash;
var Drawing = require('../../components/drawing');
var constants = require('./constants');
var extendFlat = require('../../lib/extend').extendFlat;
module.exports = {
x: {
valType: 'data_array',
editType: 'calc+clearAxisTypes',
description: 'Sets the x coordinates.'
},
x0: {
valType: 'any',
dflt: 0,
role: 'info',
editType: 'calc+clearAxisTypes',
description: [
'Alternate to `x`.',
'Builds a linear space of x coordinates.',
'Use with `dx`',
'where `x0` is the starting coordinate and `dx` the step.'
].join(' ')
},
dx: {
valType: 'number',
dflt: 1,
role: 'info',
editType: 'calc',
description: [
'Sets the x coordinate step.',
'See `x0` for more info.'
].join(' ')
},
y: {
valType: 'data_array',
editType: 'calc+clearAxisTypes',
description: 'Sets the y coordinates.'
},
y0: {
valType: 'any',
dflt: 0,
role: 'info',
editType: 'calc+clearAxisTypes',
description: [
'Alternate to `y`.',
'Builds a linear space of y coordinates.',
'Use with `dy`',
'where `y0` is the starting coordinate and `dy` the step.'
].join(' ')
},
dy: {
valType: 'number',
dflt: 1,
role: 'info',
editType: 'calc',
description: [
'Sets the y coordinate step.',
'See `y0` for more info.'
].join(' ')
},
text: {
valType: 'string',
role: 'info',
dflt: '',
arrayOk: true,
editType: 'calc',
description: [
'Sets text elements associated with each (x,y) pair.',
'If a single string, the same string appears over',
'all the data points.',
'If an array of string, the items are mapped in order to the',
'this trace\'s (x,y) coordinates.',
'If trace `hoverinfo` contains a *text* flag and *hovertext* is not set,',
'these elements will be seen in the hover labels.'
].join(' ')
},
hovertext: {
valType: 'string',
role: 'info',
dflt: '',
arrayOk: true,
editType: 'style',
description: [
'Sets hover text elements associated with each (x,y) pair.',
'If a single string, the same string appears over',
'all the data points.',
'If an array of string, the items are mapped in order to the',
'this trace\'s (x,y) coordinates.',
'To be seen, trace `hoverinfo` must contain a *text* flag.'
].join(' ')
},
mode: {
valType: 'flaglist',
flags: ['lines', 'markers', 'text'],
extras: ['none'],
role: 'info',
editType: 'calc',
description: [
'Determines the drawing mode for this scatter trace.',
'If the provided `mode` includes *text* then the `text` elements',
'appear at the coordinates. Otherwise, the `text` elements',
'appear on hover.',
'If there are less than ' + constants.PTS_LINESONLY + ' points,',
'then the default is *lines+markers*. Otherwise, *lines*.'
].join(' ')
},
hoveron: {
valType: 'flaglist',
flags: ['points', 'fills'],
role: 'info',
editType: 'style',
description: [
'Do the hover effects highlight individual points (markers or',
'line points) or do they highlight filled regions?',
'If the fill is *toself* or *tonext* and there are no markers',
'or text, then the default is *fills*, otherwise it is *points*.'
].join(' ')
},
line: {
color: {
valType: 'color',
role: 'style',
editType: 'style',
description: 'Sets the line color.'
},
width: {
valType: 'number',
min: 0,
dflt: 2,
role: 'style',
editType: 'style',
description: 'Sets the line width (in px).'
},
shape: {
valType: 'enumerated',
values: ['linear', 'spline', 'hv', 'vh', 'hvh', 'vhv'],
dflt: 'linear',
role: 'style',
editType: 'plot',
description: [
'Determines the line shape.',
'With *spline* the lines are drawn using spline interpolation.',
'The other available values correspond to step-wise line shapes.'
].join(' ')
},
smoothing: {
valType: 'number',
min: 0,
max: 1.3,
dflt: 1,
role: 'style',
editType: 'plot',
description: [
'Has an effect only if `shape` is set to *spline*',
'Sets the amount of smoothing.',
'*0* corresponds to no smoothing (equivalent to a *linear* shape).'
].join(' ')
},
dash: extendFlat({}, dash, {editType: 'style'}),
simplify: {
valType: 'boolean',
dflt: true,
role: 'info',
editType: 'plot',
description: [
'Simplifies lines by removing nearly-collinear points. When transitioning',
'lines, it may be desirable to disable this so that the number of points',
'along the resulting SVG path is unaffected.'
].join(' ')
},
editType: 'plot'
},
connectgaps: {
valType: 'boolean',
dflt: false,
role: 'info',
editType: 'calc',
description: [
'Determines whether or not gaps',
'(i.e. {nan} or missing values)',
'in the provided data arrays are connected.'
].join(' ')
},
cliponaxis: {
valType: 'boolean',
dflt: true,
role: 'info',
editType: 'plot',
description: [
'Determines whether or not markers and text nodes',
'are clipped about the subplot axes.',
'To show markers and text nodes above axis lines and tick labels,',
'make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*.'
].join(' ')
},
fill: {
valType: 'enumerated',
values: ['none', 'tozeroy', 'tozerox', 'tonexty', 'tonextx', 'toself', 'tonext'],
dflt: 'none',
role: 'style',
editType: 'calc',
description: [
'Sets the area to fill with a solid color.',
'Use with `fillcolor` if not *none*.',
'*tozerox* and *tozeroy* fill to x=0 and y=0 respectively.',
'*tonextx* and *tonexty* fill between the endpoints of this',
'trace and the endpoints of the trace before it, connecting those',
'endpoints with straight lines (to make a stacked area graph);',
'if there is no trace before it, they behave like *tozerox* and',
'*tozeroy*.',
'*toself* connects the endpoints of the trace (or each segment',
'of the trace if it has gaps) into a closed shape.',
'*tonext* fills the space between two traces if one completely',
'encloses the other (eg consecutive contour lines), and behaves like',
'*toself* if there is no trace before it. *tonext* should not be',
'used if one trace does not enclose the other.'
].join(' ')
},
fillcolor: {
valType: 'color',
role: 'style',
editType: 'style',
description: [
'Sets the fill color.',
'Defaults to a half-transparent variant of the line color,',
'marker color, or marker line color, whichever is available.'
].join(' ')
},
marker: extendFlat({
symbol: {
valType: 'enumerated',
values: Drawing.symbolList,
dflt: 'circle',
arrayOk: true,
role: 'style',
editType: 'style',
description: [
'Sets the marker symbol type.',
'Adding 100 is equivalent to appending *-open* to a symbol name.',
'Adding 200 is equivalent to appending *-dot* to a symbol name.',
'Adding 300 is equivalent to appending *-open-dot*',
'or *dot-open* to a symbol name.'
].join(' ')
},
opacity: {
valType: 'number',
min: 0,
max: 1,
arrayOk: true,
role: 'style',
editType: 'style',
description: 'Sets the marker opacity.'
},
size: {
valType: 'number',
min: 0,
dflt: 6,
arrayOk: true,
role: 'style',
editType: 'calcIfAutorange',
description: 'Sets the marker size (in px).'
},
maxdisplayed: {
valType: 'number',
min: 0,
dflt: 0,
role: 'style',
editType: 'plot',
description: [
'Sets a maximum number of points to be drawn on the graph.',
'*0* corresponds to no limit.'
].join(' ')
},
sizeref: {
valType: 'number',
dflt: 1,
role: 'style',
editType: 'calc',
description: [
'Has an effect only if `marker.size` is set to a numerical array.',
'Sets the scale factor used to determine the rendered size of',
'marker points. Use with `sizemin` and `sizemode`.'
].join(' ')
},
sizemin: {
valType: 'number',
min: 0,
dflt: 0,
role: 'style',
editType: 'calc',
description: [
'Has an effect only if `marker.size` is set to a numerical array.',
'Sets the minimum size (in px) of the rendered marker points.'
].join(' ')
},
sizemode: {
valType: 'enumerated',
values: ['diameter', 'area'],
dflt: 'diameter',
role: 'info',
editType: 'calc',
description: [
'Has an effect only if `marker.size` is set to a numerical array.',
'Sets the rule for which the data in `size` is converted',
'to pixels.'
].join(' ')
},
colorbar: colorbarAttrs,
line: extendFlat({
width: {
valType: 'number',
min: 0,
arrayOk: true,
role: 'style',
editType: 'style',
description: 'Sets the width (in px) of the lines bounding the marker points.'
},
editType: 'calc'
},
colorAttributes('marker.line')
),
gradient: {
type: {
valType: 'enumerated',
values: ['radial', 'horizontal', 'vertical', 'none'],
arrayOk: true,
dflt: 'none',
role: 'style',
editType: 'calc',
description: [
'Sets the type of gradient used to fill the markers'
].join(' ')
},
color: {
valType: 'color',
arrayOk: true,
role: 'style',
editType: 'calc',
description: [
'Sets the final color of the gradient fill:',
'the center color for radial, the right for horizontal,',
'or the bottom for vertical.',
].join(' ')
},
editType: 'calc'
},
editType: 'calc'
},
colorAttributes('marker')
),
selected: {
marker: {
opacity: {
valType: 'number',
min: 0,
max: 1,
role: 'style',
editType: 'style',
description: 'Sets the marker opacity of selected points.'
},
color: {
valType: 'color',
role: 'style',
editType: 'style',
description: 'Sets the marker color of selected points.'
},
size: {
valType: 'number',
min: 0,
role: 'style',
editType: 'style',
description: 'Sets the marker size of selected points.'
},
editType: 'style'
},
textfont: {
color: {
valType: 'color',
role: 'style',
editType: 'style',
description: 'Sets the text font color of selected points.'
},
editType: 'style'
},
editType: 'style'
},
unselected: {
marker: {
opacity: {
valType: 'number',
min: 0,
max: 1,
role: 'style',
editType: 'style',
description: 'Sets the marker opacity of unselected points, applied only when a selection exists.'
},
color: {
valType: 'color',
role: 'style',
editType: 'style',
description: 'Sets the marker color of unselected points, applied only when a selection exists.'
},
size: {
valType: 'number',
min: 0,
role: 'style',
editType: 'style',
description: 'Sets the marker size of unselected points, applied only when a selection exists.'
},
editType: 'style'
},
textfont: {
color: {
valType: 'color',
role: 'style',
editType: 'style',
description: 'Sets the text font color of unselected points, applied only when a selection exists.'
},
editType: 'style'
},
editType: 'style'
},
textposition: {
valType: 'enumerated',
values: [
'top left', 'top center', 'top right',
'middle left', 'middle center', 'middle right',
'bottom left', 'bottom center', 'bottom right'
],
dflt: 'middle center',
arrayOk: true,
role: 'style',
editType: 'calc',
description: [
'Sets the positions of the `text` elements',
'with respects to the (x,y) coordinates.'
].join(' ')
},
textfont: fontAttrs({
editType: 'calc',
colorEditType: 'style',
arrayOk: true,
description: 'Sets the text font.'
}),
r: {
valType: 'data_array',
editType: 'calc',
description: [
'For legacy polar chart only.',
'Please switch to *scatterpolar* trace type.',
'Sets the radial coordinates.'
].join('')
},
t: {
valType: 'data_array',
editType: 'calc',
description: [
'For legacy polar chart only.',
'Please switch to *scatterpolar* trace type.',
'Sets the angular coordinates.'
].join('')
}
};