Skip to content

improve contour attribute descriptions #583

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/traces/contour/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`.'
Expand All @@ -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: {
Expand Down Expand Up @@ -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.'
Expand Down