我有 1 个带有相同 X 比例(时间)的曲线的图表
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);
}
在 Zoom 域很好之前,我在 domain() 上有问题
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)]
我不明白这种行为。