Skip to content

Commit

Permalink
Extend cmin/cmax descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtusz committed Mar 30, 2016
1 parent 538b3db commit 58d215b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/traces/scatter/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ module.exports = {
description: [
'Has only an effect if `marker.color` is set to a numerical array.',
'Sets the upper bound of the color domain.',
'Value should be associated to the `marker.color` array index.'
'Value should be associated to the `marker.color` array index,',
'and if set, `marker.cmin` must be set as well.'
].join(' ')
},
cmin: {
Expand All @@ -291,7 +292,8 @@ module.exports = {
description: [
'Has only an effect if `marker.color` is set to a numerical array.',
'Sets the lower bound of the color domain.',
'Value should be associated to the `marker.color` array index.'
'Value should be associated to the `marker.color` array index,',
'and if set, `marker.cmax` must be set as well.'
].join(' ')
},
autocolorscale: {
Expand Down Expand Up @@ -374,7 +376,8 @@ module.exports = {
description: [
'Has only an effect if `marker.line.color` is set to a numerical array.',
'Sets the upper bound of the color domain.',
'Value should be associated to the `marker.line.color` array index.'
'Value should be associated to the `marker.line.color` array index,',
'and if set, `marker.line.cmin` must be set as well.'
].join(' ')
},
cmin: {
Expand All @@ -384,7 +387,8 @@ module.exports = {
description: [
'Has only an effect if `marker.line.color` is set to a numerical array.',
'Sets the lower bound of the color domain.',
'Value should be associated to the `marker.line.color` array index.'
'Value should be associated to the `marker.line.color` array index,',
'and if set, `marker.line.cmax` must be set as well.'
].join(' ')
},
autocolorscale: {
Expand Down

0 comments on commit 58d215b

Please sign in to comment.