File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,18 @@ module.exports = {
119
119
autocolorscale : extendDeep (
120
120
{ } ,
121
121
colorAttributes ( 'line' ) . autocolorscale ,
122
- { dflt : false }
122
+ {
123
+ dflt : false ,
124
+ description : [
125
+ 'Has an effect only if line.color` is set to a numerical array.' ,
126
+ 'Determines whether the colorscale is a default palette (`autocolorscale: true`)' ,
127
+ 'or the palette determined by `line.colorscale`.' ,
128
+ 'In case `colorscale` is unspecified or `autocolorscale` is true, the default ' ,
129
+ 'palette will be chosen according to whether numbers in the `color` array are' ,
130
+ 'all positive, all negative or mixed.' ,
131
+ 'The default value is false, so that `parcoords` colorscale can default to `Viridis`.'
132
+ ] . join ( ' ' )
133
+ }
123
134
)
124
135
125
136
}
@@ -131,7 +142,7 @@ module.exports = {
131
142
role : 'info' ,
132
143
dflt : false ,
133
144
description : [
134
- 'Has an effect only if `marker .color` is set to a numerical array.' ,
145
+ 'Has an effect only if `line .color` is set to a numerical array.' ,
135
146
'Determines whether or not a colorbar is displayed.'
136
147
] . join ( ' ' )
137
148
} ,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Parcoords.meta = {
24
24
description : [
25
25
'Parallel coordinates for multidimensional exploratory data analysis.' ,
26
26
'The samples are in `data`.' ,
27
- 'The colors are set in `colors `.'
27
+ 'The colors are set in `line.color `.'
28
28
] . join ( ' ' )
29
29
} ;
30
30
You can’t perform that action at this time.
0 commit comments