From 0f3badbe1fe4c72b443bc669548825965911e4bb Mon Sep 17 00:00:00 2001 From: archmoj Date: Thu, 30 May 2019 23:15:17 -0400 Subject: [PATCH] parcoords tickvals documentation mentions non-existant tickmode property --- src/traces/parcoords/attributes.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/traces/parcoords/attributes.js b/src/traces/parcoords/attributes.js index b6eb03ded73..52f3a12a7f5 100644 --- a/src/traces/parcoords/attributes.js +++ b/src/traces/parcoords/attributes.js @@ -41,8 +41,18 @@ module.exports = { }, // TODO: better way to determine ordinal vs continuous axes, // so users can use tickvals/ticktext with a continuous axis. - tickvals: extendFlat({}, axesAttrs.tickvals, {editType: 'calc'}), - ticktext: extendFlat({}, axesAttrs.ticktext, {editType: 'calc'}), + tickvals: extendFlat({}, axesAttrs.tickvals, { + editType: 'calc', + description: [ + 'Sets the values at which ticks on this axis appear.' + ].join(' ') + }), + ticktext: extendFlat({}, axesAttrs.ticktext, { + editType: 'calc', + description: [ + 'Sets the text displayed at the ticks position via `tickvals`.' + ].join(' ') + }), tickformat: { valType: 'string', dflt: '3s',