2

我正在使用 highchart.js 显示员工在一个月内的入住时间和退房时间图表。

  • X 轴将是月份中的某一天。
  • Y 轴是一天中的小时时间。

我想将工具提示自定义为

Check In
5 Aug: 09:40 am

或者

 Check Out
 5 Aug: 09:40 am

由于某些奇怪的原因,它只显示默认格式 x 和 y。代码在这里:http: //jsfiddle.net/BFnL9/1/

这里有没有错误。

4

1 回答 1

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}'
      },

http://jsfiddle.net/JpMnF/

于 2013-08-20T10:00:42.000 回答