From 02e2472f7d799c1cd3e9ad218caaa1c80a7c71cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20T=C3=A9treault-Pinard?= Date: Mon, 30 May 2016 10:53:52 -0400 Subject: [PATCH] improve contour attribute descriptions --- src/traces/contour/attributes.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/traces/contour/attributes.js b/src/traces/contour/attributes.js index 7173f97a6b0..3e3ab85460a 100644 --- a/src/traces/contour/attributes.js +++ b/src/traces/contour/attributes.js @@ -42,7 +42,7 @@ module.exports = { dflt: true, role: 'style', description: [ - 'Determines whether of not the contour level attributes at', + 'Determines whether or not the contour level attributes are', 'picked by an algorithm.', 'If *true*, the number of contour levels can be set in `ncontours`.', 'If *false*, set the contour level attributes in `contours`.' @@ -52,7 +52,10 @@ module.exports = { valType: 'integer', dflt: 0, role: 'style', - description: 'Sets the number of contour levels.' + description: [ + 'Sets the number of contour levels.', + 'Has an effect only if `autocontour` is *true*.' + ].join(' ') }, contours: { @@ -82,7 +85,7 @@ module.exports = { description: [ 'Determines the coloring method showing the contour values.', 'If *fill*, coloring is done evenly between each contour level', - 'If *heatmap*, a heatmap gradient is coloring is applied', + 'If *heatmap*, a heatmap gradient coloring is applied', 'between each contour level.', 'If *lines*, coloring is done on the contour lines.', 'If *none*, no coloring is applied on this trace.'