| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 | <!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/highcharts-3d.js"></script><script src="../../code/modules/exporting.js"></script><script src="../../code/modules/export-data.js"></script><div id="container" style="height: 400px"></div>		<script type="text/javascript">Highcharts.chart('container', {    chart: {        type: 'pie',        options3d: {            enabled: true,            alpha: 45,            beta: 0        }    },    title: {        text: 'Browser market shares at a specific website, 2014'    },    tooltip: {        pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'    },    plotOptions: {        pie: {            allowPointSelect: true,            cursor: 'pointer',            depth: 35,            dataLabels: {                enabled: true,                format: '{point.name}'            }        }    },    series: [{        type: 'pie',        name: 'Browser share',        data: [            ['Firefox', 45.0],            ['IE', 26.8],            {                name: 'Chrome',                y: 12.8,                sliced: true,                selected: true            },            ['Safari', 8.5],            ['Opera', 6.2],            ['Others', 0.7]        ]    }]});		</script>	</body></html>
 |