We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4549f4f commit 64344a2Copy full SHA for 64344a2
src/traces/scatter3d/attributes.js
@@ -97,11 +97,21 @@ module.exports = {
97
z: makeProjectionAttr('z')
98
},
99
connectgaps: scatterAttrs.connectgaps,
100
- line: {
101
- color: scatterLineAttrs.color,
+ line: extendFlat({}, {
102
width: scatterLineAttrs.width,
103
- dash: scatterLineAttrs.dash
+ dash: scatterLineAttrs.dash,
+ showscale: {
104
+ valType: 'boolean',
105
+ role: 'info',
106
+ dflt: false,
107
+ description: [
108
+ 'Has an effect only if `line.color` is set to a numerical array.',
109
+ 'Determines whether or not a colorbar is displayed.'
110
+ ].join(' ')
111
+ }
112
113
+ colorAttributes('line')
114
+ ),
115
marker: extendFlat({}, { // Parity with scatter.js?
116
symbol: {
117
valType: 'enumerated',
0 commit comments