Highcharts 3D Column Chart with Amcharts Appearance

0

How can I customize highcharts so that I do not have the graph rotation on yes, same as Amcharts? The attempts I made were changing the settings

 alpha: 15,
 beta: 15,
 depth: 50,
 viewDistance: 25

and amcharts settings:

"depth3D": 20,
"angle": 30,

but I did not get any similar results.

Highcharts 3D Column:

Amcharts3DColumn:

    
asked by anonymous 10.08.2018 / 16:23

1 answer

2

Follow the rotation settings of the angles.

alpha: 0,
beta: 0,
depth: 20,

For more angle settings here in the chart.options3d section

$('#grafico').highcharts({
  chart: {
    type: 'column',
    options3d: {
      enabled: true,
      alpha: 0,
      beta: 0,
      depth: 20,
    }
  },
  series: [{
    data: [4500, 2000, 1500, 1300, 1000, 900, 800, 700, 600, 500, 400, 300]
  }]
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><scriptsrc="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-3d.js"></script><divid="grafico"></div>
    
10.08.2018 / 16:51