我不明白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