0

使用 Candlestick highstock 图表,( http://www.highcharts.com/stock/demo/candlestick ),我想拥有最好的最后一根自定义烛台,其可用值只有高和低?这是典型的预测场景,我们希望预测明天的烛台可能有某个(当天的)高点和(当天的)低点。我们不太关心它未来可能的开放或关闭值。最后,图表上的这个(最后一个)烛台应该看起来像一条线而不是条形。任何想法非常感谢?

4

1 回答 1

0

使用 column/columnrange 系列,带有pointWidth: 1. 设置示例:

data: [{
  low: 10, // low
  y: 12,   // high 
  x: date
}]

另一种解决方案是使用 scatter 系列lineWidth: 1,例如:

data: [{
  y: 10, // low
  x: date
},{
  y: 12, // high
  x: date
}]
于 2013-07-29T11:00:31.387 回答