From e8b118e17195bf4159a0bb314a1e96db295b305e Mon Sep 17 00:00:00 2001 From: Nicolas Kruchten Date: Mon, 27 May 2019 11:09:28 -0400 Subject: [PATCH 1/2] Funnel trace description --- src/traces/funnel/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/traces/funnel/index.js b/src/traces/funnel/index.js index 4d6b375273b..fed5c400d19 100644 --- a/src/traces/funnel/index.js +++ b/src/traces/funnel/index.js @@ -26,12 +26,12 @@ module.exports = { basePlotModule: require('../../plots/cartesian'), categories: ['bar-like', 'cartesian', 'svg', 'oriented', 'showLegend', 'zoomScale'], meta: { - description: [ // TODO: update description - 'Draws funnel trace.', - '"Funnel charts are a type of chart, often used to represent stages in a sales process', - 'and show the amount of potential revenue for each stage. This type of chart can also', - 'be useful in identifying potential problem areas in an organization’s sales processes.', - 'A funnel chart is similar to a stacked percent bar chart." (https://en.wikipedia.org/wiki/Funnel_chart)' + description: [ + 'Visualize stages in a process using length-encoded bars. This trace can be used', + 'to show data in either a part-to-whole representation wherein each item appears', + 'in a single stage, or in a "drop-off" representation wherein each item appears in', + 'each stage it traversed. See also the "funnelarea" trace type for a different', + 'approach to visualizing funnel data.' ].join(' ') } }; From fb2c46c3b5000b015cd97bc1168272a1696dc9c2 Mon Sep 17 00:00:00 2001 From: Nicolas Kruchten Date: Mon, 27 May 2019 11:24:57 -0400 Subject: [PATCH 2/2] Fix trailing space --- src/traces/funnel/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/traces/funnel/index.js b/src/traces/funnel/index.js index fed5c400d19..844f4097471 100644 --- a/src/traces/funnel/index.js +++ b/src/traces/funnel/index.js @@ -26,7 +26,7 @@ module.exports = { basePlotModule: require('../../plots/cartesian'), categories: ['bar-like', 'cartesian', 'svg', 'oriented', 'showLegend', 'zoomScale'], meta: { - description: [ + description: [ 'Visualize stages in a process using length-encoded bars. This trace can be used', 'to show data in either a part-to-whole representation wherein each item appears', 'in a single stage, or in a "drop-off" representation wherein each item appears in',