Skip to content

Commit 1242135

Browse files
percy
1 parent b890a13 commit 1242135

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

dev/mocks.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"/percy/panelTest.json",
44
"/percy/bar.json",
55
"/percy/box.json",
6+
"/percy/funnel.json",
7+
"/percy/funnelarea.json",
68
"/percy/histogram.json",
79
"/percy/histogram2d.json",
810
"/percy/pie.json",

dev/percy/funnel.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"data": [
3+
{
4+
"type": "funnel",
5+
"y": ["Lead", "Pipeline", "Proposal", "Negotiation", "Closed (Won)"],
6+
"x": [ 610, 432, 231, 103, 54 ]
7+
}
8+
]
9+
}

dev/percy/funnelarea.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"data": [
3+
{
4+
"type": "funnelarea",
5+
"labels": ["Lead", "Pipeline", "Proposal", "Negotiation", "Closed (Won)"],
6+
"values": [ 610, 432, 231, 103, 54 ]
7+
}
8+
]
9+
}

dev/percy/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ export {default as box} from './box.json';
88
export {default as waterfall} from './waterfall.json';
99
export {default as sunburst} from './sunburst.json';
1010
export {default as sankey} from './sankey.json';
11+
export {default as funnel} from './funnel.json';
12+
export {default as funnelarea} from './funnelarea.json';
1113
export {default as geoTest} from './geoTest.json';

0 commit comments

Comments
 (0)