如何制作可点击的过渡条形图以在d3 v4中显示3个图形?

时间:2017-05-17 04:24:50

标签: javascript d3.js

有没有办法制作可点击的转换条形图,以便涉及3个不同的图形?因此它会自动加载图形1,然后当您单击它时会显示图形2,然后当您再次单击它时会显示图形3,最后如果再次单击它会返回到图形1?

当前代码

var w = 600;
 var h = 250;

 var dataset = [5, 10, 13, 19, 21, 25, 22, 18, 15, 13,
   11, 12, 15, 20, 18, 17, 16, 18, 23, 25
 ];

 var xScale = d3.scaleBand()
   .domain(d3.range(dataset.length))
   .rangeRound([0, w])
   .padding(0.1);

 var yScale = d3.scaleLinear()
   .domain([0, d3.max(dataset)])
   .range([0, h]);

 //Create SVG element
 var svg = d3.select("body")
   .append("svg")
   .attr("width", w)
   .attr("height", h);
 //Create bars
 svg.selectAll("rect")
   .data(dataset)
   .enter()
   .append("rect")
   .attr("x", function(d, i) {
     return xScale(i);
   })
   .attr("y", function(d) {
     return h - yScale(d);
   })
   .attr("width", xScale.bandwidth())
   .attr("height", function(d) {
     return yScale(d);
   })
   .attr("fill", function(d) {
     return "rgb(0, 0, " + (d * 10) + ")";
   });
 //Create labels
 svg.selectAll("text")
   .data(dataset)
   .enter()
   .append("text")
   .text(function(d) {
     return d;
   })
   .attr("text-anchor", "middle")
   .attr("x", function(d, i) {
     return xScale(i) + xScale.bandwidth() / 2;
   })
   .attr("y", function(d) {
     return h - yScale(d) + 14;
   })
   .attr("font-family", "sans-serif")
   .attr("font-size", "11px")
   .attr("fill", "white");
 //On click, update with new data            
 d3.select("p")
   .on("click", function() {
     //New values for dataset
     dataset = [11, 12, 15, 20, 18, 17, 16, 18, 23, 25,
       5, 10, 13, 19, 21, 25, 22, 18, 15, 13
     ];
     //Update all rects
     svg.selectAll("rect")
       .data(dataset)
       .transition() // <-- This makes it a smooth transition!
       .attr("y", function(d) {
         return h - yScale(d);
       })
       .attr("height", function(d) {
         return yScale(d);
       })
       .attr("fill", function(d) {
         return "rgb(0, 0, " + (d * 10) + ")";
       });
     //Update all labels
     svg.selectAll("text")
       .data(dataset)
       .text(function(d) {
         return d;
       })
       .attr("y", function(d) {
         return h - yScale(d) + 14;
       });

   });

<script src="https://d3js.org/d3.v4.min.js"></script>
<p>Click on this text to update the chart with new data values (once).</p>

1 个答案:

答案 0 :(得分:1)

您可以创建一个返回如下数据的函数:

function getMyData(){
   count++;//here count is a global counter.
   if(count%3 == 0){
     return [11, 12, 15, 20, 18, 17, 16, 18, 23, 25,
       5, 10, 13, 19, 21, 25, 22, 18, 15, 13
     ];
   } else if(count%3 == 1){
      return[5, 10, 13, 19, 21, 25, 22, 18, 15, 13,
       11, 12, 15, 20, 18, 17, 16, 18, 23, 25
     ];
   } else if(count%3 == 2){
      return [15, 10, 3, 19, 21, 15, 12, 8, 25, 23,
       21, 22, 5, 20, 18, 7, 6, 18, 13, 15
     ];
   }
 }

现在点击调用getMyData函数,对于每个数据集,条形图都会更新。

工作代码here