Skip to content

Commit

Permalink
fix: update demo spec
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoluoHe committed Jul 5, 2024
1 parent 4b8fd0e commit 08dff29
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
// @ts-nocheck
export const horizontalFunnelSpec = {
type: 'common',
padding: { left: 20, right: 60 },
data: [
{
id: 'funnel',
values: [
{
value: 100,
name: 'Resume Screening',
name: 'Screening',
percent: 1
},
{
value: 80,
name: 'Resume Evaluation',
name: 'Evaluating',
percent: 0.8
},
{
value: 50,
name: 'Evaluation Passed',
name: 'Passed',
percent: 0.5
},
{
Expand Down Expand Up @@ -94,7 +94,7 @@ export const horizontalFunnelSpec = {
fill: 'black'
},
{
text: `Take percent: ${datum.percent * 10}%`,
text: `Percent: ${datum.percent * 10}%`,
fontWeight: 'bold',
lineHeight: 30
}
Expand Down

0 comments on commit 08dff29

Please sign in to comment.