2014-03-26 43 views
0

我有一個當前的縮放功能,我剛剛學會在D3中使用。但是,當我使用它時,它只會移動我的和縮放圖形的軸而不是其上的對象。縮放僅縮放我的座標軸,而不是我圖上的對象

我很瞭解D3,並希望得到一些幫助。

的JavaScript的我的源代碼發佈如下:

//Setting generic width and height values for our SVG. 
    var margin = {top: 60, right: 0, bottom: 60, left: 40}, 
     width = 1024 - 70 - margin.left - margin.right, 
     height = 668 - margin.top - margin.bottom; 

    //Other variable declarations. 


    //Creating scales used to scale everything to the size of the SVG. 
    var xScale = d3.scale.linear() 
     .domain([0, 1024]) 
     .range([0, width]); 

    var yScale = d3.scale.linear() 
     .domain([1, 768]) 
     .range([height, 0]); 

    //Creates an xAxis variable that can be used in our SVG. 
    var xAxis = d3.svg.axis() 
     .scale(xScale) 
     .orient("bottom"); 

    var yAxis = d3.svg.axis() 
     .scale(yScale) 
     .orient("left"); 

    //Zoom command ... 
    var zoom = d3.behavior.zoom() 
     .x(xScale) 
     .y(yScale) 
     .scaleExtent([1, 10]) 
     .on("zoom", zoomed); 


    // The mark '#' indicates an ID. IF '#' isn't included argument expected is a tag such as "svg" or "p" etc.. 
    var SVG = d3.select("#mainSVG") 
       .attr("width", width + margin.left + margin.right) 
       .attr("height", height + margin.top + margin.bottom) 
       .append("g") 
       .attr("transform", "translate(" + margin.left + "," + margin.top + ")") 
       .call(zoom); 


    //Create background. The mouse must be over an object on the graph for the zoom to work. The rectangle will cover the entire graph. 
    var rect = SVG.append("rect") 
     .attr("width", width) 
     .attr("height", height); 

    //This selects 4 circles (non-existent, there requires data-binding) and appends them all below enter. 
    //The amount of numbers in data is the amount of circles to be appended in the enter() section. 
    var circle = SVG 
     .selectAll("circle") 
     .data([40,100,400,1900]) 
     .enter() 
      .append("circle") 
      .attr("cx",function(d){return xScale(d)}) 
      .attr("cy",function(d){return xScale(d)}) 
      .attr("r",20); 

    //This appends a circles to our SVG. 
    var circle = SVG 
     .append("circle") 
     .attr("cx",function(d){ return xScale(d)}) 
     .attr("cy",300) 
     .attr("r",20); 



    //Showing the axis that we created earlier in the script for both X and Y. 
    var xAxisGroup = SVG.append("g") 
     .attr("class", "x axis") 
     .attr("transform", "translate(0," + height + ")") 
     .call(xAxis); 

    var yAxisGroup = SVG.append("g") 
     .attr("class", "y axis") 
     .call(yAxis); 

    function zoomed() { 
     SVG.select(".x.axis").call(xAxis); 
     SVG.select(".y.axis").call(yAxis); 
    } 

回答

0

您還需要重繪所有與變焦改變軸的元素 - D3不會自動爲您做到這一點:

function zoomed() { 
    SVG.select(".x.axis").call(xAxis); 
    SVG.select(".y.axis").call(yAxis); 

    SVG.selectAll("circle") 
     .attr("cx",function(d){return xScale(d)}) 
     .attr("cy",function(d){return xScale(d)}); 
} 
+0

你好,謝謝你的回覆。雖然這樣做仍然有問題。當我加載頁面時,圖表開始看起來像這樣:http://puu.sh/7Ke5U.png。 當我嘗試做任何縮放操作時,它會更改圈的座標並將它們放置爲這樣:http://puu.sh/7Ke6G.png 這就像它以0開頭,當你縮放它時會改變它以匹配從左下角0開始的圖形,而不是頂部。你知道它爲什麼這樣解釋嗎? – Vanquiza

+0

這是因爲您對x和y座標都使用x比例。工作版本[這裏](http://jsfiddle.net/Hbdqc/)。跳轉的圓圈是您沒有綁定任何數據的圓圈。 –