2016 Q4 Quarterly Results
Triple Jump Assets Under Management in millions of Euros
var dataSource_bar_2016_q4 = [
{
year: '2010',
q4: 284,
q1: 0, q2: 0, q3: 0,
},
{
year: '2011',
q4: 307,
q1: 0, q2: 0, q3: 0,
},
{
year: '2012',
q4: 322,
q1: 0, q2: 0, q3: 0,
},
{
year: '2013',
q4: 339,
q1: 0, q2: 0, q3: 0,
},
{
year: '2014',
q4: 474.85,
q1: 0, q2: 0, q3: 0,
},
{
year: '2015',
q4: 514.58,
q1: 0, q2: 0, q3: 0,
},
{
year: '2016',
q4: 675.14,
q1: 0, q2: 0, q3: 0,
},
];
$("#bar_2016_q4").dxChart({
dataSource: dataSource_bar_2016_q4,
commonSeriesSettings: {
argumentField: "year",
type: "bar",
hoverMode: "allArgumentPoints",
selectionMode: "allArgumentPoints",
label: {
visible: false,
format: "fixedPoint",
precision: 0
}
},
series: [
{ valueField: "q1", name: "Q1" },
{ valueField: "q2", name: "Q2" },
{ valueField: "q3", name: "Q3" },
{ valueField: "q4", name: "Q4" }
],
title: "",
legend: {
verticalAlignment: "right",
horizontalAlignment: "center"
},
//palette: ['#ed825e','#f8d3cd'],
palette: ['#f7cdc0', '#f3b3a0', '#ef9a81', '#eb8161'],
pointClick: function (point) {
this.select();
},
ignoreEmptyPoints: true,
tooltip:{
enabled: true,
location: "edge"
},
commonAxisSettings: {
visible: true,
color: '#888888',
width: 1
}
});
ASN-Novib Microcredit Fund Cumulative Total Net Return (EUR)
var dataSource_line_2016_q4 = [
{
year: '2007',
q4: 113.73,
q1: 0, q2: 0, q3: 0,
},
{
year: '2008',
q4: 118.51,
q1: 0, q2: 0, q3: 0,
},
{
year: '2009',
q4: 123.53,
q1: 0, q2: 0, q3: 0,
},
{
year: '2010',
q4: 130.77,
q1: 0, q2: 0, q3: 0,
},
{
year: '2011',
q4: 136.45,
q1: 0, q2: 0, q3: 0,
},
{
year: '2012',
q4: 142.57,
q1: 0, q2: 0, q3: 0,
},
{
year: '2013',
q4: 146.5,
q1: 0, q2: 0, q3: 0,
},
{
year: '2014',
q4: 153.02,
q1: 0, q2: 0, q3: 0,
},
{
year: '2015',
q4: 155.74,
q1: 0, q2: 0, q3: 0,
},
{
year: '2016',
q4: 156.6,
q1: 0, q2: 0, q3: 0,
},
];
$("#line_2016_q4").dxChart({
dataSource: dataSource_line_2016_q4,
commonSeriesSettings: {
argumentField: "year",
type: "bar",
hoverMode: "allArgumentPoints",
selectionMode: "allArgumentPoints",
label: {
visible: false,
format: "fixedPoint",
precision: 0
}
},
series: [
{ valueField: "q1", name: "Q1" },
{ valueField: "q2", name: "Q2" },
{ valueField: "q3", name: "Q3" },
{ valueField: "q4", name: "Q4" }
],
title: "",
legend: {
verticalAlignment: "right",
horizontalAlignment: "center"
},
//palette: ['#ed825e','#f8d3cd'],
palette: ['#f7cdc0', '#f3b3a0', '#ef9a81', '#eb8161'],
pointClick: function (point) {
this.select();
},
tooltip:{
enabled: true,
location: "edge"
},
ignoreEmptyPoints: true,
commonAxisSettings: {
visible: true,
color: '#888888',
width: 1
}
});
Triple Jump Funds Under Management
var dataSource_donut1_2016_q4 = [
{region: "21.51% Asia", val: 21.51},
{region: "8.93% Caucasus", val: 8.93},
{region: "18.32% Central America", val: 18.32},
{region: "7.85% Central Asia", val: 7.85},
{region: "5.96% Eastern Europe", val: 5.96},
{region: "0.68% Global Projects", val: 0.68},
{region: "4.00% Middle East - North Africa", val: 4.00},
{region: "21.98% South America", val: 21.98},
{region: "10.76% Sub Saharan Africa", val: 10.76}
];
$("#donut1_2016_q4").dxPieChart({
dataSource: dataSource_donut1_2016_q4,
legend: {
verticalAlignment: "center",
horizontalAlignment: "right",
margin: {
top: 0,
bottom: 0,
left: 100,
right: 0
}
},
palette: ['#f9d2cb', '#f6b399', '#f4a386', '#ef8160', '#EB5D40'],
series: [{
type: "doughnut",
argumentField: "region",
valueField: 'val',
innerRadius: 0.6
}],
tooltip: {
enabled: true,
format:"largeNumber",
percentPrecision: 2,
customizeText: function(e) {
return e.argumentText;
}
}
});
Distribution by currency
var dataSource_donut2_2016_q4 = [
{region: "6.86% EUR", val: 6.86},
{region: "56.46% USD", val: 56.46},
{region: "36.68% Local Currency", val: 36.68},
{region: "1% CNY", val: 1},
{region: "1% GEL", val: 1}
];
$("#donut2_2016_q4").dxPieChart({
dataSource: dataSource_donut2_2016_q4,
legend: {
verticalAlignment: "center",
horizontalAlignment: "right",
margin: {
top: 0,
bottom: 0,
left: 100,
right: 0
}
},
palette: ['#f4a386', '#ef8160', '#EB5D40'],
series: [{
type: "doughnut",
argumentField: "region",
valueField: 'val',
innerRadius: 0.6
}],
tooltip: {
enabled: true,
format:"largeNumber",
percentPrecision: 2,
customizeText: function(e) {
return e.argumentText;
}
},
size: {
top: 30,
left: 30
}
});
Triple Jump Investment Figures
|
2014 |
2015 |
2016 |
Assets Under Management |
€ 475 M |
€ 515 M |
€ 676 M |
Number of portfolio companies |
160 |
149 |
152 |
Breakdown of local currency funding in EUR
$("#bar2_2016_q4").dxChart({
dataSource: [
{currency: "inr", val: 32802357 },
{currency: "xof", val: 13053612 },
{currency: "kzt", val: 9007826 },
{currency: "nio", val: 8329324 },
{currency: "cop", val: 7030957 },
{currency: "pen", val: 6577868 },
{currency: "hnl", val: 4347248 },
{currency: "pkr", val: 4327994 },
{currency: "kgs", val: 3701319 },
{currency: "mxn", val: 3679452 },
{currency: "bob", val: 3362861 },
{currency: "idr", val: 2807936 },
{currency: "xaf", val: 2250000 },
{currency: "mdl", val: 2067721 },
{currency: "ugx", val: 1949118 },
{currency: "khr", val: 1913184 },
{currency: "dop", val: 1887466 },
{currency: "amd", val: 1866866 },
{currency: "vnd", val: 1760564 },
{currency: "zmw", val: 1727015 },
{currency: "ngn", val: 1639003 },
{currency: "pyg", val: 1565735 },
{currency: "tjs", val: 1264723 },
{currency: "ghs", val: 1105061 },
{currency: "zar", val: 978010 },
{currency: "crc", val: 922435 },
{currency: "lkr", val: 912894 },
{currency: "kes", val: 830748 },
{currency: "mwk", val: 737358 },
{currency: "azn", val: 507746 },
{currency: "thb", val: 492905 },
{currency: "jod", val: 475584 },
],
series: {
argumentField: "currency",
valueField: "val",
type: "bar",
color: '#ef8160',
ignoreEmptyPoints: true
},
legend: {
visible: false
},
commonAxisSettings: {
visible: true,
color: '#DDDDDD',
width: 1,
label: {
overlappingBehavior: {
mode: 'stagger',
//mode: 'rotate',
rotationAngle: 270
},
font: { weight: 300, size: 12 }
}
},
tooltip: {
enabled: true,
argumentFormat: 'fixedPoint',
format: 'fixedPoint',
arrowLength: 30,
customizeTooltip: function (point) {
return {
text: point.argumentText
};
}
}
});