我的图表显示如下
如何更改工具提示中的日期格式,以包含年份?
我知道可以添加到tooltip属性的formatter
,但是当前的默认工具提示没问题,只需要显示年份。
这是一个日期时间图。我在哪里传递一个UNIX日期时间和值集对象的数组。
答案 0 :(得分:2)
您必须在工具提示中重新格式化dateTimeLabelFormats,即使您只想添加年份。
tooltip: {
dateTimeLabelFormats: {
year: '%A, %b %e, %Y'
},
[otherparams]
}
也许它不是year
,但我认为这是重新格式化工具提示的唯一方法。
一些文档:http://api.highcharts.com/highcharts#plotOptions.area.tooltip.dateTimeLabelFormats