当我将所有数据加载到图表中时,xaxis 会变得混乱且难以阅读。我每小时可能有 120 条记录,具有一定的价值。有没有办法在 highcharts 中加载我拥有的所有数据并让 xaxis 显示每小时的值?如下图所示:
问问题
186 次
1 回答
1
您是否尝试过http://api.highcharts.com/highcharts#plotOptions.line.pointInterval?我假设将 pointInterval 设置为 3600*1000 = 1 h 会达到你想要的效果吗?默认情况下,此值为 1,因此混乱。
plotOptions: {
series: {
pointInterval: 3600 * 1000 // 1 h
}
},
还要检查这个小提琴;样本/highcharts/plotoptions/series-pointstart-datetime/
于 2013-03-10T09:40:45.377 回答