-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: Funnel | ||
order: 6 | ||
--- | ||
|
||
`markdown:docs/manual/plots/funnel.zh.md` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: 漏斗图 | ||
order: 6 | ||
--- | ||
|
||
<iframe width="100%" height="500" frameborder="0" allowfullscreen style="border:1px solid #d9d9d9;" src="https://www.yuque.com/antv/g2plot/funnel-guide?view=doc_embed"> | ||
## 快速上手 | ||
<div class="sign"> | ||
```ts | ||
import { Funnel } from '@antv/g2plot'; | ||
const data = [ | ||
{ stage: '简历筛选', number: 253 }, | ||
{ stage: '初试人数', number: 151 }, | ||
{ stage: '复试人数', number: 113 }, | ||
{ stage: '录取人数', number: 87 }, | ||
{ stage: '入职人数', number: 59 }, | ||
]; | ||
const plot = new Funnel('container', { | ||
data: data, | ||
xField: 'stage', | ||
yField: 'number', | ||
legend: false, | ||
}); | ||
plot.render(); | ||
``` | ||
</div> | ||
📊 查看更多<a href="/zh/examples/more-plots/funnel#basic" target='blank'>示例</a>. | ||
🎨 漏斗图详细的配置参考 [API 文档](/zh/docs/api/plots/funnel)。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters