Highcharts 设置标志的时间

Highcharts 设置标志的时间,highcharts,Highcharts,你好! 我为我的图表创建了标志: type : 'flags', showInLegend: false, data : [{ x : Date.UTC(2012, 11, 02), title : '!', text : 'bla-bla-bla' }] 如何设置x的日期和时间?现在我只设置日期。UTC(2012,11,02)您可以通过添加时间值来设置时间。请参阅有关Date.UTC()方法的文档

你好! 我为我的图表创建了标志:

type : 'flags',
    showInLegend: false,
    data : [{
        x : Date.UTC(2012, 11, 02),
        title : '!',
        text : 'bla-bla-bla'
    }]

如何设置x的日期和时间?现在我只设置日期。UTC(2012,11,02)您可以通过添加时间值来设置时间。请参阅有关
Date.UTC()方法的文档