我想显示一个符号的开盘价、收盘价、最高价和最低价,但似乎 highstock 仅在图表类型为 ohlc 或烛台但不对齐时才显示该值。我对这个问题的解决方法是生成两个具有相同数据的图表,线(使其可见)和 ohlc(使其不可见),并从第二种类型中提取开、关、高和低并将其显示在工具提示中。我确定这不是正确的方法。有没有人有任何解决方案。
我的工具提示格式化程序
formatter: function() {
var s=' ';
$.each(this.points, function(i, series) {
//when the series is of type 'line', series.point.open is undefined but works great on 'ohlc' type
n=new Date(series.point.x);
s += 'Open: <span style="font-weight:bold">' +series.point.open + '</span> Close: <span style="font-weight:bold">' +series.point.close + '</span> High: <span style="font-weight:bold">'+ series.point.high + '</span> Low: <span style="font-weight:bold">' + series.point.low + '</span>';
});
return s;
}