在jsfiddle 中,我希望小绿色圆圈在悬停时保持不变。
在 HighStock 中,当悬停在标志上时,我怎样才能让它们保持原状(而不是试图来到前台)?
//
通常,您不能在单个系列中使用具有相同 x 值的点。您需要使用像这里这样的分离系列:http: //jsfiddle.net/5pXfM/5/
{
type: 'flags',
data: [{
x: Date.UTC(2011, 2, 10),
title: ' ',
text: 'Do not move'
}],
onSeries: 'dataseries',
shape: 'circlepin',
color: '#5F86B3',
fillColor: 'rgba(50, 255, 50, .75)',
y: -10,
stackDistance: 5
},{
type: 'flags',
data: [{
x: Date.UTC(2011, 2, 10),
title: ' ',
text: 'Do not move'
}],
onSeries: 'dataseries',
shape: 'circlepin',
color: '#5F86B3',
fillColor: 'rgba(50, 255, 50, .75)',
y: -30,
stackDistance: 5
}