我有一系列需要使用 Highcharts 绘制的数据点(UTC 日期和值),默认情况下使用 UTC。但是,数据可以位于不同的用户时区,因此在此示例中,我将其设置为纽约。我注意到,即使我的每个数据点上的工具提示都是正确的,例如 10/26 的工具提示,其中一些似乎绘制在对应于 10/27 的绘图部分中。我希望在 10/17 标记之前绘制 10/26 的所有 9 个数据点。有人在我的代码中看到问题吗?我创建了一个 JSFIFFLE 来清楚地说明这个问题。
var timeZone = 'America/New_York';
var timeZoneOffsetValue = moment(values[0].data[0][0]).tz("America/New_York")._offset;
console.log(timeZoneOffsetValue);
Highcharts.chart('container', {
yAxis: {
gridLineWidth: 0.5,
gridLineColor: '#D6D6D6',
tickInterval: 5,
dashStyle: 'LongDash',
lineColor: '#D6D6D6'
},
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
day: '%m/%d',
week: '%d/%b',
month: '%b/%y',
year: '%Y'
},
title: {
enabled: true,
text: 'date'
},
gridLineWidth: 0,
lineColor: '#D6D6D6',
lineWidth: 0.5,
startOnTick: true
},
plotOptions: {
scatter: {
marker: {
radius: 5,
states: {
hover: {
enabled: true,
lineColor: 'rgb(100,100,100)'
}
}
},
states: {
hover: {
marker: {
enabled: false
}
}
},
tooltip: this.toolTip
}
},
chart: {
marginTop: 5,
marginRight: 0,
reflow: false,
backgroundColor: 'rgba(255, 255, 255, 0.1)',
style: {
fontFamily: 'Open Sans'
},
type: 'scatter',
spacingBottom: 0,
spacingTop: 0,
spacingLeft: 0,
spacingRight: 0
},
tooltip: {
formatter: function () {
var time = new Highcharts.setOptions({
global: {
timezoneOffset: -timeZoneOffsetValue
}
}, this);
var s = '<b>' + Highcharts.dateFormat('%m/%d %H:%M:%S', this.x)
+ ' - ' + Highcharts.numberFormat(this.y, 2);
return s;
},
},
series: values
});
http://jsfiddle.net/thehme/a47Lbnwr/25/
注意:在我的实际代码中,我注意到有时当我第一次加载绘图时,大部分时间 3 个数据点都在 10/27 插槽中,但如果我重新加载绘图,有时数据点会移动到10/16 日期范围。这就是使这更加混乱的原因。