高库存turbothreshhold问题在两个窗格,烛台和带标志的卷

时间:2018-05-14 03:49:28

标签: javascript jquery asp.net highcharts highstock

我创建了带有标志且没有标记的图表,

但是当我使用带有标志的数据(与新闻相关的信息)时,它没有显示是否有更多的数据,这就是我使用turbo阈值选项的原因,如下所示。

plotOptions: {
  candlestick: {
    color: '#ef2d24',
    upColor: '#72b74c'
  },
  area: {
    color: {
      linearGradient: {
        x1: 0,
        y1: 0,
        x2: 0,
        y2: 1
      },
      stops: [
        [0, '<%=m_sStartColor%>'],
        [1, '<%=m_sEndColor%>']
      ]
    }
  },
  ohlc: {
    color: '#ef2d24',
    upColor: '#72b74c'
  },
  column: {
    color: '#20b1be'
  },
  series: {
    turboThreshold: 5000,
    dataGrouping: {
      enabled: true,
      units: [
        ['day', [1]], // unit name
        ['week', [1]], // allowed multiples          
        ['month', [1, 2, 3, 4, 6]] // unit name
      ]
    },
    cursor: 'pointer'
  },
  flags: {
    events: {
      mouseOver: function() {
        this.chart.flagTooltip = true;
      },
      mouseOut: function() {
        this.chart.flagTooltip = false;
      }
    },
    tooltip: {

      shared: true,
      width: 700
    }

  }
}
},
series: [{
  type: '<%=m_sType %>',
  name: 'Stock Price',
  id: 'dataseries',
  data: ohlc,
  dataGrouping: {
    units: groupingUnits
  },
  tooltip: {
    valueDecimals: 3
  },
  marker: {
    enabled: false,
    radius: 3
  },
  visible: true,
  threshold: null

}, {
  type: 'column',
  name: 'Volume',
  data: volume,
  yAxis: 1,
  dataGrouping: {
    units: groupingUnits
  }
}]

}

但是当我使用turbo阈值选项时,音量数字显示为双倍(意味着数据错误)。如何摆脱这个问题。 在这里,我附上两张图片。请让我知道如何摆脱这个问题。

成交量增加了一倍 Volume doubled

实际数据: Actual data

0 个答案:

没有答案