我使用highchart.js显示一个月内员工的入住时间和退房时间图。
我想将工具提示自定义为
Check In
5 Aug: 09:40 am
或
Check Out
5 Aug: 09:40 am
出于某种奇怪的原因,它只显示默认格式x和y。 代码在这里: http://jsfiddle.net/BFnL9/1/
这里有没有错误。
答案 0 :(得分:2)
您的工具提示定义很好,但它位于错误的位置。尝试将它放在与plotOptions相同的级别而不是内部。
tooltip: {
crosshairs: true,
formatter: function(){
// THIS FUNCTION DOESNT RUN ??????????
return '<b>'+ this.series.name +'</b><br/>'+
Highcharts.dateFormat('%e %b', this.x) +': '+ Highcharts.dateFormat('%H %M', this.y) ;
}
// headerFormat: '<b>{series.name}</b><br>',
// pointFormat: 'Day {point.x}, Time: {point.y}'
},