我无法在没有周末的情况下呈现日期时间表。一个人怎么做呢?
以下是示例代码(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中看到它也适用于highcharts:“在基本图表中,可以通过将ordinal设置为true来启用它。”来自http://highcharts.uservoice.com/forums/55896-general/suggestions/1089981-allow-irregular-datetime-xaxis-note-irregular-po
那么,有什么建议如何从HighCharts中的xAxis中删除星期日和星期六?
答案 0 :(得分:4)
Highcharts 不支持支持序号轴。此功能是Highstock的一部分,需要使用Highstock lbrary。使用Highstock时,您可以通过调用new Highstock.StockChart()
来创建股票图表,并通过调用new Highstock.Chart()
来创建基本图表。
答案 1 :(得分:1)
Oridinal轴仅在Highstock中可用。