我一直在试图插入最小和最大串日期,我highcharts图如下:
var formatted_startDate = startDate.replace(/-/g, ",");
var formatted_endDate = endDate.replace(/-/g, ",");
//Format now is "yyyy,mm,dd"
options = {
chart: {
renderTo: 'container',
type: 'bar'
},
xAxis: {
type: "datetime",
dateTimeLabelFormats: {
day: '%m-%d'
},
tickInterval: 24 * 3600 * 1000,
min: Date.UTC(formatted_startDate),
max: Date.UTC(formatted_endDate)
},
显然,上述不会工作,因为我传递一个字符串。 我刚刚写像这样来说明什么,我试图做的,而不是许多失败的尝试后置代号。 我已经使用JSON.parse和eval尝试(),但与语法问题。
任何帮助,将不胜感激。 干杯