Skip to content
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

Funnel trace description #3911

Merged
merged 2 commits into from
May 27, 2019
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
12 changes: 6 additions & 6 deletions src/traces/funnel/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(' ')
}
};