我無法在沒有周末的情況下呈現日期時間圖表。如何做到這一點?HighCharts datetime xAxis沒有缺失值(週末)
下面是示例代碼(http://jsfiddle.net/LLExL/1720/):
$('#container').highcharts({
xAxis: {
type: "datetime",
ordinal: true,
dateTimeLabelFormats: {
day: '%a'
}
},
series: [{
data: [
[1375221600000, 180.45999999999998],
[1375308000000, 144.368],
[1375394400000, 108.27599999999998],
[1375653600000, 72.184],
[1375740000000, 36.092],
[1375826400000, 0]
]
}]
});
正如你所看到的,我想從highstocks 「序」 選項。您可以在highcharts uservoice中看到它也可以用於高圖:「在基本圖表中,可以通過將ordinal設置爲true來啓用它。」 from http://highcharts.uservoice.com/forums/55896-general/suggestions/1089981-allow-irregular-datetime-xaxis-note-irregular-po
因此,任何建議如何從HighCharts中的xAxis中刪除星期日和星期六?
感謝,也得到了在UserVoice的回答與工作jsfiffdle例如http://jsfiddle.net/highcharts/LLExL/1732/ :) – daviddddd