这里似乎 highstock 没有按预期工作
我只是创建了一个带有固定顶部和高度的 yaxis 的 highstock 图表。
然后我添加了一个新的 y 轴,顶部和高度设置为将图表堆叠在第一个下方。
现在我在第二个 y 轴系列上设置了一些标志。
标志显示在第一个 y 轴系列的某处。
添加按钮处理程序代码:
$('#button').click(function() {
var chart = $('#container').highcharts();
chart.addAxis({
id:'secondY',
top:300,// making this 140 positions flags correctly
height:150
});
chart.addSeries({
id:'adbe',
yAxis:'secondY',
name: 'ADBE',
data: ADBE
});
$(this).attr('disabled', true);
chart.addSeries(
// the event marker flags
{
type : 'flags',
data : [{
x : Date.UTC(2011, 3, 25),
title : 'H',
text : 'Euro Contained by Channel Resistance'
}, {
x : Date.UTC(2011, 3, 28),
title : 'G',
text : 'EURUSD: Bulls Clear Path to 1.50 Figure'
}],
onSeries : 'adbe',
shape : 'circlepin',
width : 16
});
});