Highcharts日期时间轴问题

时间:2011-09-01 12:26:07

标签: jquery datetime highcharts

我设置了我的高图选项,这样我的a轴使用日期时间。我的数据点是毫秒和数字(x,y) - > (utcDate,号码)。

options.series.push({
  type: "line",
  name: "Performance",
  data: dataPoints,
  color: "#FF8000"
});

我的选择包括:

xAxis: {
  type: "datetime",
  dateTimeLabelFormats: {
    day: "%e. %b",
    month: "%b '%y",
    year: "%Y"
  },
  lineWidth: 2
}

enter image description here

问题是:我希望我的图表显示我的第一个和最后一个标签:1。8月& 31. 8月。

我尝试过使用showFirstTick,showFirstLabel和pointStart,但这不起作用。我无法设置间隔,因为我的图表可以显示从几周到几个月到几年的任何内容,并且会导致太多的混乱。

1 个答案:

答案 0 :(得分:2)

我认为这里发生的是x轴选择显示周(formatter selection described here)而不是几个月。格式化程序模式与默认模式合并在一起,因此即使从您的选项中遗漏,仍会有数周的模式。同时检查startOfWeek选项(reference),您可以在其中设置周是星期日还是星期一开始,默认为星期一。 (不知道在没有编辑源的情况下关闭某个级别的任何方法)