高图 - 在悬停时编辑工具提示日期格式内容

时间:2015-06-30 16:20:21

标签: javascript jquery html highcharts

我的图表显示如下enter image description here

如何更改工具提示中的日期格式,以包含年份?

我知道可以添加到tooltip属性的formatter,但是当前的默认工具提示没问题,只需要显示年份。

这是一个日期时间图。我在哪里传递一个UNIX日期时间和值集对象的数组。

1 个答案:

答案 0 :(得分:2)

您必须在工具提示中重新格式化dateTimeLabelFormats,即使您只想添加年份。

tooltip: {
        dateTimeLabelFormats: {
            year: '%A, %b %e, %Y'
         },
         [otherparams]
}

也许它不是year,但我认为这是重新格式化工具提示的唯一方法。

一些文档:http://api.highcharts.com/highcharts#plotOptions.area.tooltip.dateTimeLabelFormats