Highcharts 3D图

  var chart = {
            //3D柱形图
            /*type: 'column',
            options3d: {
                enabled: true,     //显示图表是否设置为3D, 我们将其设置为 true
                alpha: 15,         //图表视图旋转角度
                beta: 15,          //图表视图旋转角度
                depth: 50,         //图表的合计深度,默认为100
                viewDistance: 25   //定义图表的浏览长度
            }*/
            //3D饼图
           type: 'pie',
            options3d: {
                enabled: true,     //显示图表是否设置为3D, 我们将其设置为 true
                alpha: 15,         //图表视图旋转角度
                beta: 15,          //图表视图旋转角度
                depth: 50,         //图表的合计深度,默认为100
                viewDistance: 25   //定义图表的浏览长度
            }
          

        };

猜你喜欢

转载自blog.csdn.net/weixin_42470710/article/details/87776557