HIghstock Timeseries数据日期格式

时间:2015-07-27 08:09:08

标签: highcharts time-series highstock

我想在Highstock创建一个时间序列图表。我从Web服务收到的数据格式如下。 日期:“2015/06/28” 一周:“2015年第28周” 月份:“2015年6月” 一年:“2015”

我应该如何转换系列中的数据?

目前我正在以这种方式处理数据:

var date = "2015/07/28";
text = date.split('/');
date = new Date(text[0], parseInt(text[1], 10) - 1, text[2]);
newdate = date.getTime();

我正在推动系列中的新日期。

但由于这个原因,我的图表缩小了。图表的左右两侧留有很多空间。

shrinked chart

1 个答案:

答案 0 :(得分:0)

您可以按dateTimeLabelFormats

进行修改
dateTimeLabelFormats: {
    millisecond: '%H:%M:%S.%L',
    second: '%H:%M:%S',
    minute: '%H:%M',
    hour: '%H:%M',
    day: '%e. %b',
    week: '%e. %b',
    month: '%b \'%y',
    year: '%Y'
}