我有5曲線和相同的X標度(時間)1 圖表當我打電話d3.behavior.zoom我的圖表range.domain()變爲空
ths.xRange = d3.time.scale().range([0, ths._innerWidth()]);
ths.xAxis = d3.svg.axis().scale(ths.xRange).orient("bottom");
ths.curves = [];
每個曲線是兒童圖
function curve(parent, init) {
var ths = this;
ths.parent = parent;
ths.yRange = d3.scale.linear().range([ths.parent._innerHeight(), 0]);
ths.xDomain = ths.parent.xRange.domain(d3.extent(ths.data.initial.map(function(d) { return d.date; })));
ths.yDomain = ths.yRange.domain(d3.extent(ths.data.initial.map(function(d) { return d.val; })));
// line generator
ths.line = d3.svg.line()
.interpolate("linear")
.x(function(d) { return ths.xDomain(d.date); })
.y(function(d) { return ths.yDomain(d.val); });
但是當我使用變焦:
ths._Sensitive.call(
ths.CurrentZoom = d3.behavior.zoom()
.x(ths.xRange)
.scaleExtent([1,1000])
.on("zoom", function() {
window.clearTimeout(ths.timeoutID);
ths.timeoutID = window.setTimeout(function() {
console.log('event <Improove granularity>');
},
400); // Delay (in ms) before request new data
ths.zoom();
}
)
);
ths.zoom = function(){
console.log ('ths.xRange.domain()=', ths.xRange.domain());
// trace l'axe X
ths.svg().select("#xAxis").call(ths.xAxis);
}
我域有問題() 變焦域之前好
graph.xRange.domain()
[Tue Jan 01 2013 00:32:00 GMT+0100 (CET), Wed Apr 10 2013 21:00:00 GMT+0200 (CEST)]
但放大後,我的網域()是錯誤的!
graph.xRange.domain()
[Thu Jan 01 1970 01:00:00 GMT+0100 (CET), Thu Jan 01 1970 01:00:00 GMT+0100 (CET)]
我不明白這種行爲。
你還沒有告訴我們,當你放大到底發生了什麼。好像你在調用'ths.zoom()',但是你沒有給我們定義這個函數。 – 2013-04-12 08:16:12
ths.zoom()幾乎是空的: 它顯示x.domain()在控制檯和重繪x軸。 我加了。 – Alban 2013-04-12 15:43:50