将highstock标志更改为xAxis上的行

时间:2012-05-01 13:16:54

标签: javascript jquery highcharts highstock

你好以下代码通过使用类型将标志放在系列上:'flags'名称:''data:[{}]等等,“”是否有任何方法可以更改标志类型以绘制线条或地区? “”

代码很简单

                  series: [{
                      type: 'line',
                      name: 'AAPL',
                      data: ohlc,
                      id:'dataseries'
                  }, {
                  type: 'flags', 'this is what i wanted to change to lines 
                  name: 'Flags on series',
                  data: [{
                  x: 1114992000000,
                      title: 'On series'
                  }, {
                      x: Date.UTC(2011, 3, 28),
                      title: 'On series'
           }],
                      onSeries: 'dataseries',
                      shape: 'squarepin'

                  }, {
                      type: 'line',
                      name: 'Volume',
                      data: volume,
                      yAxis: 1

        }]

1 个答案:

答案 0 :(得分:2)

您是否了解Plot linesPlot bands,该高级图是否支持开箱即用? 他们没有在x轴上给出这些例子,但是当它们垂直定向时它们也非常有用

Vertical Plot lines on x axis @ jsFiddle