如何在三维散点图中设置z点的索引?

时间:2015-03-06 09:58:21

标签: highcharts z-index

我不明白Highcharts中三维散点图中的“zIndex”是如何工作的...... 我问你是否可以为每个系列点设置z-Index。

我试过这样的方式:

series: [{
        name: 'Reading',
        colorByPoint: true,                     
        data: coloriamo()}] 
        });

 function coloriamo() {
       var points = [];  
           points.push({
                marker: {
                states: {
                        hover: {                                
                            radius: 5,
                            radiusPlus: 0,
                            lineWidth: 0,
                            lineColor: null,
                            lineWidthPlus: 0,
                            fillColor: 'red'
                            }
                        },
                    fillColor: 'grey',

                    radius: 5
                },

                zIndex: zindice,
                magn: magn,
                luogo: luogo,
                data: data,
                x: X,
                y: ipo,
                z: Z
            });          

    return points;
}

我在这里发布的功能比原版更短。原始功能没问题,只有“zIndez”不起作用。

zIndex 每个点的值都会发生变化,但是在图表中zIndex(代码位于顶部)不起作用,我不知道为什么......

由于

修改

这里是jsfiddle

http://jsfiddle.net/Lj7ujLkg/

0 个答案:

没有答案