我在我的图表中使用Highstock flags,而使用带有模板的squirepin标记shapre,标志与系列重叠,但如果我在没有模板的情况下使用它,它可以正常工作。
series: [{
name: 'USD to EUR',
data: data,
id: 'dataseries',
tooltip: {
valueDecimals: 4
}
}, {
type: 'flags',
data: [{
x: Date.UTC(year, 1, 22),
title: '<span><b>Name</b>:John Doe </span><br><span> Age:20</span><br><span>Gender:Male</span>',
text: 'Shape: "squarepin"'
}],
onSeries: 'dataseries',
shape: 'squarepin'
}]
这是我的 fiddle 有问题,
它应该在系列之上。
答案 0 :(得分:1)
将y
属性添加到
series: [{
name: 'USD to EUR',
data: data,
id: 'dataseries',
tooltip: {
valueDecimals: 4
}
}, {
type: 'flags',
data: [{
x: Date.UTC(year, 1, 22),
title: '<span><b>Name</b>:John Doe </span><br><span> Age:20</span><br><span>Gender:Male</span>',
text: 'Shape: "squarepin"'
}, {
x: Date.UTC(year, 3, 28),
title: 'A',
text: 'Shape: "squarepin"'
}],
onSeries: 'dataseries',
shape: 'squarepin',
y:-70 //place required value
}]
Fiddle演示