1
我有下圖:定製時間表蜱與D3和dc.js
scrollChart
...
.x(d3.time.scale().domain([startDate, endDate]))
.round(d3.time.minutes)
.alwaysUseRounding(true)
.xUnits(d3.time.minutes);
我怎樣才能改變我的.xUnits
和.round
使用每5/10/15分鐘爲時間間隔?
更新:
戈登的回答幫助,但我變焦後有新的問題。
這是5分鐘間隔:
我的縮放後,我有不好的圖表:(我怎麼能過濾後「重組」一切以1周分鐘的間隔是真的
?
[chart.round()](http://dc-js.github.io/dc.js/docs/html/dc.coordinateGridMixin.html#round__anchor)僅影響刷舍入。您可能希望按照您感興趣的時間間隔進行聚合。[以下是在不同時間間隔之間切換的示例。](http://dc-js.github.io/dc.js/examples/switching-time -intervals.html) – Gordon
@戈登你是對的,但我需要定製時間線與我的時間間隔,而不是'月',''''''小時' –
難題,也許嘗試這個線程? https://groups.google.com/forum/m/#!topic/dc-js-user-group/q_dO0pRf3vA – Gordon