可以在 3d 图表中更改 "lineColor" 吗?

Is possible to change "lineColor" in 3d charts?

我想更改 3d 图表中 y 轴的颜色,例如:

http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/3d-scatter-draggable/

如果我在 Yaxis 中添加:

   lineColor: '#ff0000'

但颜色没有改变。为什么?

您应该更改 options3d.frame 中边的颜色以更改 y 轴颜色:

frame: {
    bottom: { size: 1, color: 'rgba(0,0,0,0.02)' },
    back: { size: 1, color: 'rgba(0,0,0,0.04)' },
    side: { size: 1, color: 'rgba(255,0,0,0.15)' }
}

然后你可以使用 alternateGridColor 来获得两种颜色,还可以调整底部、背面和侧面的不透明度。这是 DEMO

编辑:

你也可以这样使用plotBands

plotBands: [{
     color: '#FCFFC5',
     from: 0,
     to: 2.5
}]

DEMO