@@ -19,7 +19,7 @@ module.exports = templatedArray('shape', {
19
19
valType : 'boolean' ,
20
20
role : 'info' ,
21
21
dflt : true ,
22
- editType : 'calcIfAutorange +arraydraw' ,
22
+ editType : 'calc +arraydraw' ,
23
23
description : [
24
24
'Determines whether or not this shape is visible.'
25
25
] . join ( ' ' )
@@ -29,7 +29,7 @@ module.exports = templatedArray('shape', {
29
29
valType : 'enumerated' ,
30
30
values : [ 'circle' , 'rect' , 'path' , 'line' ] ,
31
31
role : 'info' ,
32
- editType : 'calcIfAutorange +arraydraw' ,
32
+ editType : 'calc +arraydraw' ,
33
33
description : [
34
34
'Specifies the shape type to be drawn.' ,
35
35
@@ -79,7 +79,7 @@ module.exports = templatedArray('shape', {
79
79
values : [ 'scaled' , 'pixel' ] ,
80
80
dflt : 'scaled' ,
81
81
role : 'info' ,
82
- editType : 'calcIfAutorange +arraydraw' ,
82
+ editType : 'calc +arraydraw' ,
83
83
description : [
84
84
'Sets the shapes\'s sizing mode along the x axis.' ,
85
85
'If set to *scaled*, `x0`, `x1` and x coordinates within `path` refer to' ,
@@ -95,7 +95,7 @@ module.exports = templatedArray('shape', {
95
95
xanchor : {
96
96
valType : 'any' ,
97
97
role : 'info' ,
98
- editType : 'calcIfAutorange +arraydraw' ,
98
+ editType : 'calc +arraydraw' ,
99
99
description : [
100
100
'Only relevant in conjunction with `xsizemode` set to *pixel*.' ,
101
101
'Specifies the anchor point on the x axis to which `x0`, `x1`' ,
@@ -107,7 +107,7 @@ module.exports = templatedArray('shape', {
107
107
x0 : {
108
108
valType : 'any' ,
109
109
role : 'info' ,
110
- editType : 'calcIfAutorange +arraydraw' ,
110
+ editType : 'calc +arraydraw' ,
111
111
description : [
112
112
'Sets the shape\'s starting x position.' ,
113
113
'See `type` and `xsizemode` for more info.'
@@ -116,7 +116,7 @@ module.exports = templatedArray('shape', {
116
116
x1 : {
117
117
valType : 'any' ,
118
118
role : 'info' ,
119
- editType : 'calcIfAutorange +arraydraw' ,
119
+ editType : 'calc +arraydraw' ,
120
120
description : [
121
121
'Sets the shape\'s end x position.' ,
122
122
'See `type` and `xsizemode` for more info.'
@@ -138,7 +138,7 @@ module.exports = templatedArray('shape', {
138
138
values : [ 'scaled' , 'pixel' ] ,
139
139
dflt : 'scaled' ,
140
140
role : 'info' ,
141
- editType : 'calcIfAutorange +arraydraw' ,
141
+ editType : 'calc +arraydraw' ,
142
142
description : [
143
143
'Sets the shapes\'s sizing mode along the y axis.' ,
144
144
'If set to *scaled*, `y0`, `y1` and y coordinates within `path` refer to' ,
@@ -154,7 +154,7 @@ module.exports = templatedArray('shape', {
154
154
yanchor : {
155
155
valType : 'any' ,
156
156
role : 'info' ,
157
- editType : 'calcIfAutorange +arraydraw' ,
157
+ editType : 'calc +arraydraw' ,
158
158
description : [
159
159
'Only relevant in conjunction with `ysizemode` set to *pixel*.' ,
160
160
'Specifies the anchor point on the y axis to which `y0`, `y1`' ,
@@ -166,7 +166,7 @@ module.exports = templatedArray('shape', {
166
166
y0 : {
167
167
valType : 'any' ,
168
168
role : 'info' ,
169
- editType : 'calcIfAutorange +arraydraw' ,
169
+ editType : 'calc +arraydraw' ,
170
170
description : [
171
171
'Sets the shape\'s starting y position.' ,
172
172
'See `type` and `ysizemode` for more info.'
@@ -175,7 +175,7 @@ module.exports = templatedArray('shape', {
175
175
y1 : {
176
176
valType : 'any' ,
177
177
role : 'info' ,
178
- editType : 'calcIfAutorange +arraydraw' ,
178
+ editType : 'calc +arraydraw' ,
179
179
description : [
180
180
'Sets the shape\'s end y position.' ,
181
181
'See `type` and `ysizemode` for more info.'
@@ -185,7 +185,7 @@ module.exports = templatedArray('shape', {
185
185
path : {
186
186
valType : 'string' ,
187
187
role : 'info' ,
188
- editType : 'calcIfAutorange +arraydraw' ,
188
+ editType : 'calc +arraydraw' ,
189
189
description : [
190
190
'For `type` *path* - a valid SVG path with the pixel values' ,
191
191
'replaced by data values in `xsizemode`/`ysizemode` being *scaled*' ,
@@ -224,10 +224,10 @@ module.exports = templatedArray('shape', {
224
224
} ,
225
225
line : {
226
226
color : extendFlat ( { } , scatterLineAttrs . color , { editType : 'arraydraw' } ) ,
227
- width : extendFlat ( { } , scatterLineAttrs . width , { editType : 'calcIfAutorange +arraydraw' } ) ,
227
+ width : extendFlat ( { } , scatterLineAttrs . width , { editType : 'calc +arraydraw' } ) ,
228
228
dash : extendFlat ( { } , dash , { editType : 'arraydraw' } ) ,
229
229
role : 'info' ,
230
- editType : 'calcIfAutorange +arraydraw'
230
+ editType : 'calc +arraydraw'
231
231
} ,
232
232
fillcolor : {
233
233
valType : 'color' ,
0 commit comments