我创建了带有标志且没有标记的图表,
但是当我使用带有标志的数据(与新闻相关的信息)时,它没有显示是否有更多的数据,这就是我使用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阈值选项时,音量数字显示为双倍(意味着数据错误)。如何摆脱这个问题。 在这里,我附上两张图片。请让我知道如何摆脱这个问题。
成交量增加了一倍
实际数据: