| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | <!DOCTYPE HTML><html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">		<meta name="viewport" content="width=device-width, initial-scale=1">		<title>Highcharts Example</title>		<style type="text/css">		</style>	</head>	<body><script src="../../code/highcharts.js"></script><script src="../../code/modules/funnel.js"></script><script src="../../code/modules/exporting.js"></script><script src="../../code/modules/export-data.js"></script><div id="container" style="min-width: 410px; max-width: 600px; height: 400px; margin: 0 auto"></div>		<script type="text/javascript">Highcharts.chart('container', {    chart: {        type: 'funnel'    },    title: {        text: 'Sales funnel'    },    plotOptions: {        series: {            dataLabels: {                enabled: true,                format: '<b>{point.name}</b> ({point.y:,.0f})',                color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black',                softConnector: true            },            center: ['40%', '50%'],            neckWidth: '30%',            neckHeight: '25%',            width: '80%'        }    },    legend: {        enabled: false    },    series: [{        name: 'Unique users',        data: [            ['Website visits', 15654],            ['Downloads', 4064],            ['Requested price list', 1987],            ['Invoice sent', 976],            ['Finalized', 846]        ]    }]});		</script>	</body></html>
 |