Javascript 向三维条形图添加边框颜色和宽度

Javascript 向三维条形图添加边框颜色和宽度,javascript,html,angular,highcharts,Javascript,Html,Angular,Highcharts,我想更改三维条形图的边框颜色和宽度 我尝试的是: // Set up the chart var chart = new Highcharts.Chart({ chart: { renderTo: 'container', type: 'column', options3d: { enabled: true, alpha: 15, beta: 15,

我想更改三维条形图的边框颜色和宽度

我尝试的是:

// Set up the chart
var chart = new Highcharts.Chart({
    chart: {

        renderTo: 'container',
        type: 'column',
        options3d: {
            enabled: true,
            alpha: 15,
            beta: 15,
            depth: 50,
            viewDistance: 25
        }
    },
    yAxis:{
    gridLineWidth:0,
    visible:false,
    },
    xAxis: {
    gridLineWidth:0,
    categories:['Jan','feb']
    },
    title: {
        text: 'Chart rotation demo'
    },
    subtitle: {
        text: 'Test options by dragging the sliders below'
    },
    plotOptions: {
        column: {
            depth: 25,
          color:'blue,
        },
        series: {

     showInLegend: false,
            dataLabels: {
                enabled: true,
                align: 'center',
                color: 'black',
                x: 0,
                y:2

            },
            pointPadding: 0.2,
            groupPadding: 0
        }
    },
    series: [{
        data: [0, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
    }]
});
获取输出:

我想得到不同颜色的酒吧和边界

我还尝试:

纵队{ 边框宽度:3, 边框颜色:“红色” }


提前感谢

使用
edgeColor
edgeWidth
属性:

    series: [{
        edgeColor: 'red',
        edgeWidth: 5,
        ...
    }]

现场演示:

API参考:


如何将类型更改为圆柱体以获得柱面图……我尝试了键入:'cylinder'……但显示错误Hi@bollam_rohith,请创建一个包含其他信息和
highcharts
标记的新问题。