customize highcharts tooltip to show datetime

前端 未结 5 1443
生来不讨喜
生来不讨喜 2020-12-01 09:19

I\'m developing a project that is expected to show this graph: http://jsfiddle.net/Kc23N/

When I click a point (tooltip) I want to show a date understandable, not th

5条回答
  •  萌比男神i
    2020-12-01 10:09

    You should use xDateFormat in tooltip for customizing your format date
    http://api.highcharts.com/highcharts#tooltip.xDateFormat

    sample:
    tooltip: {
               xDateFormat: '%Y-%m-%d'
             },
    

提交回复
热议问题