系列上的Highstock标志

时间:2016-04-29 12:38:44

标签: highcharts highstock

我正在使用highstock并希望在我的图表中添加标记。

我在同一个容器中有两个图表,正在使用" onSeries"加上 正确的图表上的标志。但是,标志总是应用于上图,尽管我在" onSeries"我的标志配置中的参数。

fiddler:https://jsfiddle.net/rick822/mtw0oxxy/

$(function () {
    $('#container').highcharts('StockChart', {

        chart: {
          height: 1800
        },
        title : {
            text : 'AAPL Stock Price'
        },
        yAxis: [
            {
              labels: {},
              title: {
                text: 'test1'
              },
              height: 100,
              opposite: false,
              offset: 0
            },
            {
              labels: {},
              title: {
                text: 'test2'
              },
              height: 100,
              top: 300,
              opposite: false,
              offset: 0
            }
        ],
        series : [{
                name : 'AAPL',
                data : [[1241136000000,18.18],[1243555200000,19.40],[1246320000000,20.35]],
                id: 'test1',
                tooltip: {
                    valueDecimals: 2
                }
                ,
                yAxis: 0
            },
            {
                name : 'AAPL',
                data : [[1241136000000,18.18],[1243555200000,19.40],[1246320000000,20.35]],
                id: 'test2',
                tooltip: {
                    valueDecimals: 2
                },
                yAxis: 1
            },
            {
              type: 'flags',
              data: [{x: 1241136000000, title: "TEST1" }],
              onSeries: 'test1',
              shape: 'squarepin',
              width: 16,
              fillColor: 'red'
            },
            {
              type: 'flags',
              data: [{x: 1243555200000, title: "TEST2" }],
              onSeries: 'test2',
              shape: 'squarepin',
              width: 16,
              fillColor: 'lightgreen'
            }
        ]
    });
});

1 个答案:

答案 0 :(得分:1)

由于你有几个y轴,你还必须为标志系列指定相关的y轴,至少它们不会在索引0 y轴上。

例如(JSFiddle):

{
  type: 'flags',
  data: [{x: 1241136000000, title: "TEST1" }],
  onSeries: 'test1',
  shape: 'squarepin',
  width: 16,
  fillColor: 'red',
  yAxis: 0
},
{
  type: 'flags',
  data: [{x: 1243555200000, title: "TEST2" }],
  onSeries: 'test2',
  shape: 'squarepin',
  width: 16,
  fillColor: 'lightgreen',
  yAxis: 1
}