Highcharts 3D Pie
# Highcharts 3D Pie Chart
[Highcharts 3D Charts](#)
The following example demonstrates a 3D pie chart.
We have already learned the basic configuration syntax of Highcharts in previous chapters. Next, let's look at other configurations.
* * *
## Configuration
### chart.options3d Configuration
The following lists the basic configuration for 3D charts. Set the chart's `type` property to `pie`, and the `options3d` option can be used to set the 3D effect.
var chart = { type: 'pie', options3d: { enabled: true, //Display whether the chart is set to 3D, we set it to true alpha: 15, //Chart view rotation angle beta: 15, //Chart view rotation angle depth: 50, //Chart total depth, default is 100 viewDistance: 25 //Define chart viewing length }};
### Example
File name: highcharts_3d_pie.htm
$(document).ready(function() { var chart = { type: 'pie', options3d: { enabled: true, alpha: 45, beta: 0 } }; var title = { text: '2014 Annual browser market share for specific website' }; var tooltip = { pointFormat: '{series.name}: {point.percentage:.1f}%' }; var plotOptions = { pie: { allowPointSelect: true, cursor: 'pointer', depth: 35, dataLabels: { enabled: true, format: '{point.name}' } } }; var 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] ] }]; var json = {}; json.chart = chart; json.title = title; json.tooltip = tooltip; json.plotOptions = plotOptions; json.series = series; $('#container').highcharts(json);});
[Try it Β»](#)
The output of the above example is:
[Highcharts 3D Charts](#)
YouTip