-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathlayout_attributes.js
290 lines (251 loc) · 9.25 KB
/
layout_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
/**
* 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 colorAttrs = require('../../components/color/attributes');
var axesAttrs = require('../cartesian/layout_attributes');
var domainAttrs = require('../domain').attributes;
var extendFlat = require('../../lib').extendFlat;
var overrideAll = require('../../plot_api/edit_types').overrideAll;
var axisLineGridAttr = overrideAll({
color: axesAttrs.color,
showline: extendFlat({}, axesAttrs.showline, {dflt: true}),
linecolor: axesAttrs.linecolor,
linewidth: axesAttrs.linewidth,
showgrid: extendFlat({}, axesAttrs.showgrid, {dflt: true}),
gridcolor: axesAttrs.gridcolor,
gridwidth: axesAttrs.gridwidth
// TODO add spike* attributes down the road
// should we add zeroline* attributes?
}, 'plot', 'from-root');
var axisTickAttrs = overrideAll({
tickmode: axesAttrs.tickmode,
nticks: axesAttrs.nticks,
tick0: axesAttrs.tick0,
dtick: axesAttrs.dtick,
tickvals: axesAttrs.tickvals,
ticktext: axesAttrs.ticktext,
ticks: axesAttrs.ticks,
ticklen: axesAttrs.ticklen,
tickwidth: axesAttrs.tickwidth,
tickcolor: axesAttrs.tickcolor,
showticklabels: axesAttrs.showticklabels,
showtickprefix: axesAttrs.showtickprefix,
tickprefix: axesAttrs.tickprefix,
showticksuffix: axesAttrs.showticksuffix,
ticksuffix: axesAttrs.ticksuffix,
showexponent: axesAttrs.showexponent,
exponentformat: axesAttrs.exponentformat,
separatethousands: axesAttrs.separatethousands,
tickfont: axesAttrs.tickfont,
tickangle: axesAttrs.tickangle,
tickformat: axesAttrs.tickformat,
tickformatstops: axesAttrs.tickformatstops,
layer: axesAttrs.layer
}, 'plot', 'from-root');
var radialAxisAttrs = {
visible: extendFlat({}, axesAttrs.visible, {dflt: true}),
type: axesAttrs.type,
autorange: axesAttrs.autorange,
rangemode: {
valType: 'enumerated',
values: ['tozero', 'nonnegative', 'normal'],
dflt: 'tozero',
role: 'style',
editType: 'calc',
description: [
'If *tozero*`, the range extends to 0,',
'regardless of the input data',
'If *nonnegative*, the range is non-negative,',
'regardless of the input data.',
'If *normal*, the range is computed in relation to the extrema',
'of the input data (same behavior as for cartesian axes).'
].join(' ')
},
range: axesAttrs.range,
categoryorder: axesAttrs.categoryorder,
categoryarray: axesAttrs.categoryarray,
angle: {
valType: 'angle',
editType: 'plot',
role: 'info',
description: [
'Sets the angle (in degrees) from which the radial axis is drawn.',
'Note that by default, radial axis line on the theta=0 line',
'corresponds to a line pointing right (like what mathematicians prefer).',
'Defaults to the first `polar.sector` angle.'
].join(' ')
},
side: {
valType: 'enumerated',
// TODO add 'center' for `showline: false` radial axes
values: ['clockwise', 'counterclockwise'],
dflt: 'clockwise',
editType: 'plot',
role: 'info',
description: [
'Determines on which side of radial axis line',
'the tick and tick labels appear.'
].join(' ')
},
title: extendFlat({}, axesAttrs.title, {editType: 'plot', dflt: ''}),
titlefont: overrideAll(axesAttrs.titlefont, 'plot', 'from-root'),
// might need a 'titleside' and even 'titledirection' down the road
hoverformat: axesAttrs.hoverformat,
// More attributes:
// We'll need some attribute that determines the span
// to draw donut-like charts
// e.g. https://github.com/matplotlib/matplotlib/issues/4217
//
// maybe something like 'span' or 'hole' (like pie, but pie set it in data coords?)
// span: {},
// hole: 1
editType: 'calc'
};
extendFlat(
radialAxisAttrs,
// N.B. radialaxis grid lines are circular,
// but radialaxis lines are straight from circle center to outer bound
axisLineGridAttr,
axisTickAttrs
);
var angularAxisAttrs = {
visible: extendFlat({}, axesAttrs.visible, {dflt: true}),
type: {
valType: 'enumerated',
// 'linear' should maybe be called 'angle' or 'angular' here
// to make clear that axis here is periodic and more tightly match
// `thetaunit`?
//
// skip 'date' for first push
// no 'log' for now
values: ['-', 'linear', 'category'],
dflt: '-',
role: 'info',
editType: 'calc',
description: [
'Sets the angular axis type.',
'If *linear*, set `thetaunit` to determine the unit in which axis value are shown.',
'If *category, use `period` to set the number of integer coordinates around polar axis.'
].join(' ')
},
categoryorder: axesAttrs.categoryorder,
categoryarray: axesAttrs.categoryarray,
thetaunit: {
valType: 'enumerated',
values: ['radians', 'degrees'],
dflt: 'degrees',
role: 'info',
editType: 'calc',
description: [
'Sets the format unit of the formatted *theta* values.',
'Has an effect only when `angularaxis.type` is *linear*.'
].join(' ')
},
period: {
valType: 'number',
editType: 'calc',
min: 0,
role: 'info',
description: [
'Set the angular period.',
'Has an effect only when `angularaxis.type` is *category*.',
].join(' ')
// Examples for date axes:
//
// - period that equals the timeseries length
// http://flowingdata.com/2017/01/24/one-dataset-visualized-25-ways/18-polar-coordinates/
// - and 1-year periods (focusing on seasonal change0
// http://otexts.org/fpp2/seasonal-plots.html
// https://blogs.scientificamerican.com/sa-visual/why-are-so-many-babies-born-around-8-00-a-m/
// http://www.seasonaladjustment.com/2012/09/05/clock-plot-visualising-seasonality-using-r-and-ggplot2-part-3/
// https://i.pinimg.com/736x/49/b9/72/49b972ccb3206a1a6d6f870dac543280.jpg
// https://www.climate-lab-book.ac.uk/spirals/
},
direction: {
valType: 'enumerated',
values: ['counterclockwise', 'clockwise'],
dflt: 'counterclockwise',
role: 'info',
editType: 'calc',
description: [
'Sets the direction corresponding to positive angles.'
].join(' ')
},
rotation: {
valType: 'angle',
editType: 'calc',
role: 'info',
description: [
'Sets that start position (in degrees) of the angular axis',
'By default, polar subplots with `direction` set to *counterclockwise*',
'get a `rotation` of *0*',
'which corresponds to due East (like what mathematicians prefer).',
'In turn, polar with `direction` set to *clockwise* get a rotation of *90*',
'which corresponds to due North (like on a compass),'
].join(' ')
},
hoverformat: axesAttrs.hoverformat,
editType: 'calc'
};
extendFlat(
angularAxisAttrs,
// N.B. angular grid lines are straight lines from circle center to outer bound
// the angular line is circular bounding the polar plot area.
axisLineGridAttr,
// N.B. ticksuffix defaults to '°' for angular axes with `thetaunit: 'degrees'`
axisTickAttrs
);
module.exports = {
// TODO for x/y/zoom system for paper-based zooming:
// x: {},
// y: {},
// zoom: {},
domain: domainAttrs({name: 'polar', editType: 'plot'}),
sector: {
valType: 'info_array',
items: [
{valType: 'number', editType: 'plot'},
{valType: 'number', editType: 'plot'}
],
dflt: [0, 360],
role: 'info',
editType: 'plot',
description: [
'Sets angular span of this polar subplot with two angles (in degrees).',
'Sector are assumed to be spanned in the counterclockwise direction',
'with *0* corresponding to rightmost limit of the polar subplot.'
].join(' ')
},
bgcolor: {
valType: 'color',
role: 'style',
editType: 'plot',
dflt: colorAttrs.background,
description: 'Set the background color of the subplot'
},
radialaxis: radialAxisAttrs,
angularaxis: angularAxisAttrs,
gridshape: {
valType: 'enumerated',
values: ['circular', 'linear'],
dflt: 'circular',
role: 'style',
editType: 'plot',
description: [
'Determines if the radial axis grid lines and angular axis line are drawn',
'as *circular* sectors or as *linear* (polygon) sectors.',
'Has an effect only when the angular axis has `type` *category*.',
'Note that `radialaxis.angle` is snapped to the angle of the closest',
'vertex when `gridshape` is *circular*',
'(so that radial axis scale is the same as the data scale).'
].join(' ')
},
// TODO maybe?
// annotations:
editType: 'calc'
};