-
Notifications
You must be signed in to change notification settings - Fork 0
/
sankey.html
454 lines (405 loc) · 17.1 KB
/
sankey.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<html>
<head>
<style type="text/css">
h1, h2, h3, h4, h5, h6 {
margin: 25px 0 25px 0;
font-family: "Avenir",Helvetica,Arial,sans-serif;
font-size: 16px;
font-weight: 400;
}
hr {
border: 0;
background-color: #fff;
border-top: 1px dashed #8c8c8c;
width: 100%;
}
</style>
</head>
<body>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<!-- see https://developers.google.com/chart/interactive/docs/gallery/sankey for instructions and customisation -->
<!-- Chart 0a -->
<h4>Chart 0a - both legs, no challenge flow split</h4>
<div id="sankey_0a" style="width: 1800px; height: 600px; padding: 20px 0px 100px 0px;"></div>
<script type="text/javascript">
google.charts.load("current", {packages:["sankey"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'From');
data.addColumn('string', 'To');
data.addColumn('number', 'Number of tx');
data.addRows([
[ 'Checkout', 'Route to Authorisation', 1000000 ],
[ 'Checkout', 'Route to Authentication', 1000000 ],
// Authorisation leg
[ 'Route to Authorisation', 'Accepted without 3DS', 380000 ],
[ 'Route to Authorisation', 'Soft Declined', 600000 ],
[ 'Route to Authorisation', 'Hard Declined', 20000 ],
[ 'Soft Declined', 'Start Authentication', 600000 ],
// [ 'Accepted without 3DS', 'Chargeback', 500 ],
//Authentication leg
[ 'Route to Authentication', 'Start Authentication', 1000000 ],
[ 'Start Authentication', 'Frictionless', 600000 ],
[ 'Start Authentication', 'Challenged', 1000000 ],
[ 'Frictionless', 'Failed authentication', 6000 ],
[ 'Frictionless', 'Route to Authorisation after 3DS', 594000 ],
[ 'Challenged', 'Failed authentication', 300000 ],
[ 'Challenged', 'Route to Authorisation after 3DS', 700000 ],
[ 'Route to Authorisation after 3DS', 'Hard Declined', 129400 ],
[ 'Route to Authorisation after 3DS', 'Accepted after 3DS', 1164600 ],
// [ 'Accepted', 'Chargeback', 835 ]
]);
// Set chart options
var options = {
width: 1300,
sankey: {
iterations: 32, // affects layout. Set to 0 to control it, 32 to defautl, over for more attempts to optmise
node: {
label: {
fontName: 'Avenir',
fontSize: 13,
color: '#000',
bold: false,
italic: false
},
nodePadding: 80
},
link: { color: { stroke: 'd3d3d3', strokeWidth: 1 } }
},
tooltip: {textStyle: {fontName: 'Avenir', fontSize: 13}, showColorCode: true}
};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Sankey(document.getElementById('sankey_0a'));
chart.draw(data, options);
}
</script>
<!-- Chart 0b -->
<h4>Chart 0b - both legs, no challenge flow split</h4>
<div id="sankey_0b" style="width: 1800px; height: 600px; padding: 20px 0px 100px 0px;"></div>
<script type="text/javascript">
google.charts.load("current", {packages:["sankey"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'From');
data.addColumn('string', 'To');
data.addColumn('number', 'Number of tx');
data.addRows([
// [ 'Checkout', 'Route to Authorisation', 1000000 ],
// [ 'Checkout', 'Route to Authentication', 1000000 ],
// [ 'Route to Authorisation', 'Authorisation accepted', 500000 ],
// [ 'Route to Authorisation', 'Soft Declined', 500000 ],
// [ 'Route to Authentication', 'Start Authentication', 1000000 ],
// [ 'Soft Declined', 'Start Authentication', 500000 ],
// [ 'Start Authentication', 'Frictionless Authentication', 850000 ],
// [ 'Start Authentication', 'Challenged Authentication', 150000 ],
[ 'Checkout', 'Route to Authorisation', 1000000 ],
[ 'Checkout', 'Route to Authentication', 1000000 ],
[ 'Route to Authorisation', 'Authorisation accepted', 500000 ],
[ 'Route to Authorisation', 'Soft Declined', 500000 ],
[ 'Soft Declined', 'Route to Authentication', 500000 ],
[ 'Route to Authentication', 'Frictionless Authentication', 850000 ],
[ 'Route to Authentication', 'Challenged Authentication', 150000 ],
[ 'Frictionless Authentication', 'Abandoned', 68000 ],
[ 'Frictionless Authentication', 'Authorisation after authentication', 782000 ],
[ 'Challenged Authentication', 'Abandoned', 22500 ],
[ 'Challenged Authentication', 'Authorisation after authentication', 127500 ],
[ 'Authorisation after authentication', 'Hard Declined', 86020 ],
[ 'Authorisation after authentication', 'Accepted', 695980 ],
[ 'Authorisation after authentication', 'Hard Declined', 11475 ],
[ 'Authorisation after authentication', 'Accepted', 116025 ],
[ 'Accepted', 'Chargeback with liability', 835 ],
[ 'Accepted', 'Chargeback liability shifted', 455 ]
]);
// Set chart options
var options = {
width: 1200,
sankey: {
iterations: 200, // affects layout. Set to 0 to control it, 32 to defautl, over for more attempts to optmise
node: {
label: {
fontName: 'Avenir',
fontSize: 13,
color: '#000',
bold: false,
italic: false
},
nodePadding: 80
},
link: { color: { stroke: 'd3d3d3', strokeWidth: 1 } }
},
tooltip: {textStyle: {fontName: 'Avenir', fontSize: 13}, showColorCode: true}
};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Sankey(document.getElementById('sankey_0b'));
chart.draw(data, options);
}
</script>
<!-- Chart 1 -->
<h4>Chart 1 - single authorisation node and no challenge flow split</h4>
<div id="sankey_multiple" style="width: 1800px; height: 600px; padding: 20px 0px 100px 0px;"></div>
<script type="text/javascript">
google.charts.load("current", {packages:["sankey"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'From');
data.addColumn('string', 'To');
data.addColumn('number', 'Number of tx');
data.addRows([
[ 'Checkout start 3DS', 'Frictionless Authentication', 850000 ],
[ 'Checkout start 3DS', 'Challenged Authentication', 150000 ],
[ 'Frictionless Authentication', 'Abandoned', 68000 ],
[ 'Frictionless Authentication', 'Authorisation', 782000 ],
[ 'Challenged Authentication', 'Abandoned', 22500 ],
[ 'Challenged Authentication', 'Authorisation', 127500 ],
[ 'Authorisation', 'Declined', 86020 ],
[ 'Authorisation', 'Accepted post frictionless', 695980 ],
[ 'Authorisation', 'Declined', 11475 ],
[ 'Authorisation', 'Accepted post challenge', 116025 ],
[ 'Accepted post frictionless', 'Chargeback', 835 ],
[ 'Accepted post challenge', 'Chargeback', 23 ]
]);
// Set chart options
var options = {
width: 1200,
sankey: {
iterations: 200, // affects layout. Set to 0 to control it, 32 to default, over for more attempts to optmise
node: {
label: {
fontName: 'Avenir',
fontSize: 13,
color: '#000',
bold: false,
italic: false
},
nodePadding: 80
},
link: { color: { stroke: 'd3d3d3', strokeWidth: 1 } }
},
tooltip: {textStyle: {fontName: 'Avenir', fontSize: 13}, showColorCode: true}
};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Sankey(document.getElementById('sankey_multiple'));
chart.draw(data, options);
}
</script>
<!-- Chart 2 -->
<hr>
<h4>Chart 2 - as 1 but add challange web flow and app flow</h4>
<div id="sankey_2" style="width: 1800px; height: 600px; padding: 70px 0px 100px 0px;"></div>
<script type="text/javascript">
google.charts.load("current", {packages:["sankey"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'From');
data.addColumn('string', 'To');
data.addColumn('number', 'Number of tx');
data.addRows([
[ 'Checkout start 3DS', 'Frictionless Authentication', 850000 ],
[ 'Checkout start 3DS', 'Challenged Authentication', 150000 ],
[ 'Frictionless Authentication', 'Abandoned', 68000 ],
[ 'Frictionless Authentication', 'Authorisation', 782000 ],
[ 'Challenged Authentication', 'Web flow', 75000 ],
[ 'Challenged Authentication', 'App flow', 75000 ],
[ 'Web flow', 'Abandoned', 11250 ],
[ 'Web flow', 'Authorisation', 63750 ],
[ 'App flow', 'Abandoned', 11250 ],
[ 'App flow', 'Authorisation', 63750 ],
[ 'Authorisation', 'Declined', 86020 ],
[ 'Authorisation', 'Accepted post frictionless', 695980 ],
[ 'Authorisation', 'Declined', 11475 ],
[ 'Authorisation', 'Accepted post challenge', 116025 ],
[ 'Accepted post frictionless', 'Chargeback', 835 ],
[ 'Accepted post challenge', 'Chargeback', 23 ]
]);
// Set chart options
var options = {
width: 1200,
sankey: {
iterations: 200, // affects layout. Set to 0 to control it, 32 to defautl, over for more attempts to optmise
node: {
label: {
fontName: 'Avenir',
fontSize: 13,
color: '#000',
bold: false,
italic: false
},
nodePadding: 80
},
link: { color: { stroke: 'd3d3d3', strokeWidth: 1 } }
},
tooltip: {textStyle: {fontName: 'Avenir', fontSize: 13}, showColorCode: true}
};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Sankey(document.getElementById('sankey_2'));
chart.draw(data, options);
}
</script>
<!-- Chart 3 -->
<hr>
<h4>Chart 3 - as 2 but splits declines into nodes</h4>
<div id="sankey_3" style="width: 1800px; height: 600px; padding: 70px 0px 100px 0px;"></div>
<script type="text/javascript">
google.charts.load("current", {packages:["sankey"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'From');
data.addColumn('string', 'To');
data.addColumn('number', 'Number of tx');
data.addRows([
[ 'Checkout start 3DS', 'Frictionless Authentication', 850000 ],
[ 'Checkout start 3DS', 'Challenged Authentication', 150000 ],
[ 'Frictionless Authentication', 'Abandoned', 68000 ],
[ 'Frictionless Authentication', 'Authorisation', 782000 ],
[ 'Challenged Authentication', 'Web flow', 75000 ],
[ 'Challenged Authentication', 'App flow', 75000 ],
[ 'Web flow', 'Abandoned', 11250 ],
[ 'Web flow', 'Authorisation', 63750 ],
[ 'App flow', 'Abandoned', 11250 ],
[ 'App flow', 'Authorisation', 63750 ],
[ 'Authorisation', 'Declined post frictionless', 86020 ],
[ 'Authorisation', 'Accepted post frictionless', 695980 ],
[ 'Authorisation', 'Declined post challenge', 11475 ],
[ 'Authorisation', 'Accepted post challenge', 116025 ],
[ 'Accepted post frictionless', 'Chargeback', 835 ],
[ 'Accepted post challenge', 'Chargeback', 23 ]
]);
// Set chart options
var options = {
width: 1200,
sankey: {
iterations: 200, // affects layout. Set to 0 to control it, 32 to defautl, over for more attempts to optmise
node: {
label: {
fontName: 'Avenir',
fontSize: 13,
color: '#000',
bold: false,
italic: false
},
nodePadding: 80
},
link: { color: { stroke: 'd3d3d3', strokeWidth: 1 } }
},
tooltip: {textStyle: {fontName: 'Avenir', fontSize: 13}, showColorCode: true}
};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Sankey(document.getElementById('sankey_3'));
chart.draw(data, options);
}
</script>
<!-- Chart 4 -->
<hr>
<h4>Chart 4 - as 3 but splits authorisation into nodes, less effective and authorisation nodes don't line up vertically.</h4>
<div id="sankey_4" style="width: 1800px; height: 600px; padding: 70px 0px 100px 0px;"></div>
<script type="text/javascript">
google.charts.load("current", {packages:["sankey"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'From');
data.addColumn('string', 'To');
data.addColumn('number', 'Number of tx');
data.addRows([
[ 'Checkout start 3DS', 'Frictionless Authentication', 850000 ],
[ 'Checkout start 3DS', 'Challenged Authentication', 150000 ],
[ 'Frictionless Authentication', 'Abandoned', 68000 ],
[ 'Frictionless Authentication', 'Authorisation post frictionless', 782000 ],
[ 'Challenged Authentication', 'Web flow', 75000 ],
[ 'Challenged Authentication', 'App flow', 75000 ],
[ 'Web flow', 'Abandoned', 11250 ],
[ 'Web flow', 'Authorisation post challenge', 63750 ],
[ 'App flow', 'Abandoned', 11250 ],
[ 'App flow', 'Authorisation post challenge', 63750 ],
[ 'Authorisation post frictionless', 'Declined post frictionless', 86020 ],
[ 'Authorisation post frictionless', 'Accepted post frictionless', 695980 ],
[ 'Authorisation post challenge', 'Declined post challenge', 11475 ],
[ 'Authorisation post challenge', 'Accepted post challenge', 116025 ],
[ 'Accepted post frictionless', 'Chargeback', 835 ],
[ 'Accepted post challenge', 'Chargeback', 23 ]
]);
// Set chart options
var options = {
width: 1200,
sankey: {
iterations: 200, // affects layout. Set to 0 to control it, 32 to defautl, over for more attempts to optmise
node: {
label: {
fontName: 'Avenir',
fontSize: 13,
color: '#000',
bold: false,
italic: false
},
nodePadding: 80
},
link: { color: { stroke: 'd3d3d3', strokeWidth: 1 } }
},
tooltip: {textStyle: {fontName: 'Avenir', fontSize: 13}, showColorCode: true}
};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Sankey(document.getElementById('sankey_4'));
chart.draw(data, options);
}
</script>
<!-- Chart 5 -->
<hr>
<h4>Chart 5 - as 4 but also splits abandon by channel</h4>
<div id="sankey_5" style="width: 1800px; height: 600px; padding: 70px 0px 100px 0px;"></div>
<script type="text/javascript">
google.charts.load("current", {packages:["sankey"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'From');
data.addColumn('string', 'To');
data.addColumn('number', 'Number of tx');
data.addRows([
[ 'Checkout start 3DS', 'Frictionless Authentication', 850000 ],
[ 'Checkout start 3DS', 'Challenged Authentication', 150000 ],
[ 'Frictionless Authentication', 'Abandoned in frictionless', 68000 ],
[ 'Frictionless Authentication', 'Authorisation post frictionless', 782000 ],
[ 'Challenged Authentication', 'Web flow', 75000 ],
[ 'Challenged Authentication', 'App flow', 75000 ],
[ 'Web flow', 'Abandoned in web flow', 11250 ],
[ 'Web flow', 'Authorisation post challenge', 63750 ],
[ 'App flow', 'Abandoned in app flow', 11250 ],
[ 'App flow', 'Authorisation post challenge', 63750 ],
[ 'Authorisation post frictionless', 'Declined post frictionless', 86020 ],
[ 'Authorisation post frictionless', 'Accepted post frictionless', 695980 ],
[ 'Authorisation post challenge', 'Declined post challenge', 11475 ],
[ 'Authorisation post challenge', 'Accepted post challenge', 116025 ],
[ 'Accepted post frictionless', 'Chargeback post frictionless', 835 ],
[ 'Accepted post challenge', 'Chargeback post challenge', 23 ]
]);
// Set chart options
var options = {
width: 1200,
sankey: {
iterations: 200, // affects layout. Set to 0 to control it, 32 to defautl, over for more attempts to optmise
node: {
label: {
fontName: 'Avenir',
fontSize: 13,
color: '#000',
bold: false,
italic: false
},
nodePadding: 80
},
link: { color: { stroke: 'd3d3d3', strokeWidth: 1 } }
},
tooltip: {textStyle: {fontName: 'Avenir', fontSize: 13}, showColorCode: true}
};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Sankey(document.getElementById('sankey_5'));
chart.draw(data, options);
}
</script>
</body>
</html>