| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | 
							- <!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
 
-         }
 
-     },
 
-     title: {
 
-         text: 'Contents of Highsoft\'s weekly fruit delivery'
 
-     },
 
-     subtitle: {
 
-         text: '3D donut in Highcharts'
 
-     },
 
-     plotOptions: {
 
-         pie: {
 
-             innerSize: 100,
 
-             depth: 45
 
-         }
 
-     },
 
-     series: [{
 
-         name: 'Delivered amount',
 
-         data: [
 
-             ['Bananas', 8],
 
-             ['Kiwi', 3],
 
-             ['Mixed nuts', 1],
 
-             ['Oranges', 6],
 
-             ['Apples', 8],
 
-             ['Pears', 4],
 
-             ['Clementines', 4],
 
-             ['Reddish (bag)', 1],
 
-             ['Grapes (bunch)', 1]
 
-         ]
 
-     }]
 
- });
 
- 		</script>
 
- 	</body>
 
- </html>
 
 
  |